diff --git a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/ClusterTests.java b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/ClusterTests.java index 9b0b469525a2..75aa1c9fbb95 100644 --- a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/ClusterTests.java +++ b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/ClusterTests.java @@ -33,10 +33,12 @@ import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; +@Ignore @RunWith(JUnit4.class) public class ClusterTests { private static final String PROJECT_ID = System.getenv("GOOGLE_CLOUD_PROJECT"); diff --git a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/DeploymentTests.java b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/DeploymentTests.java index 7652bb8fbadb..fcd44a0df15e 100644 --- a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/DeploymentTests.java +++ b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/DeploymentTests.java @@ -32,10 +32,12 @@ import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; +@Ignore @RunWith(JUnit4.class) public class DeploymentTests { private static final String PROJECT_ID = System.getenv("GOOGLE_CLOUD_PROJECT"); diff --git a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/RealmTests.java b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/RealmTests.java index 1b4e896119a8..489b3430854b 100644 --- a/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/RealmTests.java +++ b/java-game-servers/samples/snippets/src/test/java/com/example/gameservices/RealmTests.java @@ -32,10 +32,12 @@ import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; +@Ignore @RunWith(JUnit4.class) public class RealmTests { private static final String PROJECT_ID = System.getenv("GOOGLE_CLOUD_PROJECT");