We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5347858 commit cd9b37dCopy full SHA for cd9b37d
pandas_gbq/tests/test_gbq.py
@@ -25,11 +25,6 @@
25
TABLE_ID = 'new_test'
26
27
28
-def _skip_local_auth_if_in_travis_env():
29
- if _in_travis_environment():
30
- pytest.skip("Cannot run local auth in travis environment")
31
-
32
33
def _skip_if_no_private_key_path():
34
if not _get_private_key_path():
35
pytest.skip("Cannot run integration tests without a "
@@ -242,8 +237,6 @@ class TestGBQConnectorIntegrationWithLocalUserAccountAuth(object):
242
237
@pytest.fixture(autouse=True)
243
238
def setup(self, project):
244
239
245
- _skip_local_auth_if_in_travis_env()
246
247
240
self.sut = gbq.GbqConnector(project, auth_local_webserver=True)
248
241
249
def test_get_application_default_credentials_does_not_throw_error(self):
0 commit comments