Skip to content

Commit dba44d1

Browse files
committed
add Ignore annotation
1 parent 7590983 commit dba44d1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.kokoro/build.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ integration)
6565
-ntp \
6666
-Penable-integration-tests \
6767
-DtrimStackTrace=false \
68-
-Dit.test='!com.google.cloud.logging.it.ITTailLogsTest#testTailLogEntries' \
6968
-Dclirr.skip=true \
7069
-Denforcer.skip=true \
7170
-Dcheckstyle.skip=true \
@@ -78,7 +77,7 @@ integration)
7877
;;
7978
graalvm)
8079
# Run Unit and Integration Tests with Native Image
81-
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dit.test='!com.google.cloud.logging.it.ITTailLogsTest#testTailLogEntries' -Dfmt.skip=true -Dfailsafe.failIfNoSpecifiedTests=false
80+
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative test -Dfmt.skip=true -Dfailsafe.failIfNoSpecifiedTests=false
8281
RETURN_CODE=$?
8382
;;
8483
samples)

google-cloud-logging/src/test/java/com/google/cloud/logging/it/ITTailLogsTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import com.google.common.collect.ImmutableList;
2727
import java.util.ArrayList;
2828
import org.junit.AfterClass;
29+
import org.junit.Ignore;
2930
import org.junit.Test;
3031

3132
public class ITTailLogsTest extends BaseSystemTest {
@@ -39,6 +40,7 @@ public static void cleanUpLogs() throws InterruptedException {
3940
assertTrue(cleanupLog(LOG_ID));
4041
}
4142

43+
@Ignore
4244
@Test(timeout = 120_000) // Note: the test should not take longer than 2 min
4345
public void testTailLogEntries() throws InterruptedException {
4446
LogEntry testLogEntry =

0 commit comments

Comments
 (0)