From 46cb24509182f9e21f9d21ff4efba99e612b305c Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 29 Dec 2016 08:54:36 -0500 Subject: [PATCH] Fix gbq integration tests so that unique datasets/table names are used for each test --- pandas/io/tests/test_gbq.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pandas/io/tests/test_gbq.py b/pandas/io/tests/test_gbq.py index 28820fd71af27..78891cae38bc0 100644 --- a/pandas/io/tests/test_gbq.py +++ b/pandas/io/tests/test_gbq.py @@ -1065,7 +1065,7 @@ def tearDown(self): pass def test_upload_data_as_service_account_with_key_path(self): - destination_table = DESTINATION_TABLE + "11" + destination_table = "{0}.{1}".format(DATASET_ID + "2", TABLE_ID + "1") test_size = 10 df = make_mixed_dataframe_v2(test_size) @@ -1124,10 +1124,7 @@ 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" + destination_table = "{0}.{1}".format(DATASET_ID + "3", TABLE_ID + "1") test_size = 10 df = make_mixed_dataframe_v2(test_size)