You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(ci): Add Python 3.14 support to owlbot.py
* 🦉 Updates from OwlBot post-processor
See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
* feat(ci): Add Python 3.14 support to core files
* Apply suggestion from @chalmerlowe
3.7 is not supported in this repo.
* Apply suggestion from @chalmerlowe
* Apply suggestion from @chalmerlowe
3.7 is not supported in this repo.
* fix(ci): Remove unit (3.7) from required checks
* fix(coverage): Remove obsolete Python < 3.8 import logic
* fix(coverage): Add no cover pragma for api_key import
* fix(ci): Correct lint errors and coverage pragma case
---------
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: google/cloud/client/__init__.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,9 @@
34
34
importgoogle.auth.api_key
35
35
36
36
HAS_GOOGLE_AUTH_API_KEY=True
37
-
exceptImportError:
38
-
HAS_GOOGLE_AUTH_API_KEY=False
37
+
exceptImportError: # pragma: NO COVER
38
+
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)
0 commit comments