Skip to content

CI: Fix Flakey GBQ Tests #30630

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 3, 2020
Prev Previous commit
Next Next commit
Fix import
  • Loading branch information
alimcmaster1 committed Dec 26, 2019
commit 51f51718e7ca6303f07ceeb31bd94e722acc5785
3 changes: 1 addition & 2 deletions pandas/tests/io/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import platform

import numpy as np
from pandas_gbq.gbq import TableCreationError
import pytest
import pytz

Expand Down Expand Up @@ -198,7 +197,7 @@ def test_roundtrip(self, gbq_dataset):
"if_exists, expected_num_rows, expectation",
[
("append", 300, does_not_raise()),
("fail", 200, pytest.raises(TableCreationError)),
("fail", 200, pytest.raises(pandas_gbq.gbq.TableCreationError)),
("replace", 100, does_not_raise()),
],
)
Expand Down