Skip to content

Commit

Permalink
TST: skip gbq upload test as flakey
Browse files Browse the repository at this point in the history
  • Loading branch information
jreback committed Dec 23, 2016
1 parent 9accef8 commit 45910ae
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pandas/io/tests/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,9 @@ def tearDown(self):
pass

def test_upload_data_as_service_account_with_key_contents(self):
raise nose.SkipTest(
"flaky test")

destination_table = DESTINATION_TABLE + "12"

test_size = 10
Expand Down

2 comments on commit 45910ae

@jreback
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @parthea

any idea why this was recently failing?

@parthea
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test has been fixed in #15009 . The dataset/table name used in this test was already used in TestToGBQIntegration.test_verify_schema_fails_different_data_type which could result in a table schema conflict for this test if the table schema from TestToGBQIntegration.test_verify_schema_fails_different_data_type is still cached.

Please sign in to comment.