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 353b642 commit 8dc13e3Copy full SHA for 8dc13e3
google/cloud/client/__init__.py
@@ -34,8 +34,9 @@
34
import google.auth.api_key
35
36
HAS_GOOGLE_AUTH_API_KEY = True
37
-except ImportError:
38
- HAS_GOOGLE_AUTH_API_KEY = False
+except ImportError: # pragma: no cover
+ HAS_GOOGLE_AUTH_API_KEY = False # pragma: no cover
39
+ # TODO: Investigate adding a test for google.auth.api_key ImportError (https://github.com/googleapis/python-cloud-core/issues/334)
40
41
42
_GOOGLE_AUTH_CREDENTIALS_HELP = (
0 commit comments