Skip to content

Commit 8cf7fb4

Browse files
authored
chore: Temporarily disable tests due to Quota Issues (#1699)
* chore: Temporarily disable ITLoggingTest.testListEntries() * chore: Ignore additional tests * chore: Ignore additional tests * chore: Ignore additional tests
1 parent 2b6ea70 commit 8cf7fb4

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
import java.util.logging.Level;
3939
import java.util.logging.Logger;
4040
import org.junit.After;
41+
import org.junit.Ignore;
4142
import org.junit.Test;
4243

4344
public class ITJulLoggerTest extends BaseSystemTest {
@@ -49,6 +50,7 @@ public void tearDown() throws InterruptedException {
4950
assertTrue(cleanupLog(LOG_ID));
5051
}
5152

53+
@Ignore
5254
@Test
5355
public void testLoggingHandler() throws InterruptedException {
5456
LoggingOptions options = logging.getOptions();
@@ -85,6 +87,7 @@ public void testLoggingHandler() throws InterruptedException {
8587
logger.removeHandler(handler);
8688
}
8789

90+
@Ignore
8891
@Test
8992
public void testSyncLoggingHandler() throws InterruptedException {
9093
LoggingOptions options = logging.getOptions();

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.Iterator;
3333
import org.junit.AfterClass;
3434
import org.junit.BeforeClass;
35+
import org.junit.Ignore;
3536
import org.junit.Test;
3637

3738
public class ITLoggingTest extends BaseSystemTest {
@@ -82,6 +83,7 @@ public static void cleanUpLogs() throws InterruptedException {
8283
assertTrue(cleanupLog(LOG_ID));
8384
}
8485

86+
@Ignore
8587
@Test(timeout = 600_000) // Note: it can take ~10 minutes for logs to propagate!
8688
public void testListEntries() throws InterruptedException {
8789
LoggingOptions loggingOptions = logging.getOptions();
@@ -115,6 +117,7 @@ public void testListEntries() throws InterruptedException {
115117
assertNotNull(entry.getTimestamp());
116118
}
117119

120+
@Ignore
118121
@Test(timeout = 600_000) // Note: it can take ~10 minutes for logs to propagate!
119122
public void testSortedOrder() throws InterruptedException {
120123
LoggingOptions loggingOptions = logging.getOptions();
@@ -138,6 +141,7 @@ public void testSortedOrder() throws InterruptedException {
138141
}
139142
}
140143

144+
@Ignore
141145
@Test
142146
public void testDeleteNonExistingLog() {
143147
String logId = formatForTest("test-delete-non-existing-log");

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,10 @@
3737
import java.util.Iterator;
3838
import org.junit.After;
3939
import org.junit.BeforeClass;
40+
import org.junit.Ignore;
4041
import org.junit.Test;
4142

43+
@Ignore
4244
public class ITTracingLogsTest extends BaseSystemTest {
4345

4446
private static final String LOG_ID = formatForTest("test-write-log-entries-log");

0 commit comments

Comments
 (0)