Skip to content

Commit

Permalink
Revert "chore: Temporarily disable tests due to Quota Issues (#1699)"
Browse files Browse the repository at this point in the history
This reverts commit 8cf7fb4.
  • Loading branch information
lqiu96 authored Oct 1, 2024
1 parent 8cf7fb4 commit 6e92723
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import java.util.logging.Level;
import java.util.logging.Logger;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;

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

@Ignore
@Test
public void testLoggingHandler() throws InterruptedException {
LoggingOptions options = logging.getOptions();
Expand Down Expand Up @@ -87,7 +85,6 @@ public void testLoggingHandler() throws InterruptedException {
logger.removeHandler(handler);
}

@Ignore
@Test
public void testSyncLoggingHandler() throws InterruptedException {
LoggingOptions options = logging.getOptions();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import java.util.Iterator;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

public class ITLoggingTest extends BaseSystemTest {
Expand Down Expand Up @@ -83,7 +82,6 @@ public static void cleanUpLogs() throws InterruptedException {
assertTrue(cleanupLog(LOG_ID));
}

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

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

@Ignore
@Test
public void testDeleteNonExistingLog() {
String logId = formatForTest("test-delete-non-existing-log");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@
import java.util.Iterator;
import org.junit.After;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

@Ignore
public class ITTracingLogsTest extends BaseSystemTest {

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

0 comments on commit 6e92723

Please sign in to comment.