Skip to content

Commit

Permalink
Remove flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Apr 1, 2016
1 parent 0849646 commit 9a8d156
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.Timeout;
Expand Down Expand Up @@ -623,6 +624,7 @@ public void testInsertAllWithErrors() {
assertTrue(bigquery.delete(TableId.of(DATASET, tableName)));
}

@Ignore("Flaky test; see issue #836")
@Test
public void testListAllTableData() {
Page<List<FieldValue>> rows = bigquery.listTableData(TABLE_ID);
Expand Down Expand Up @@ -906,6 +908,7 @@ public void testCancelNonExistingJob() {
assertFalse(bigquery.cancel("test_cancel_non_existing_job"));
}

@Ignore("Flaky test; see #836")
@Test
public void testInsertFromFile() throws InterruptedException {
String destinationTableName = "test_insert_from_file_table";
Expand Down

0 comments on commit 9a8d156

Please sign in to comment.