Skip to content

Commit ce1d63f

Browse files
authored
coverage
1 parent 1e71fa4 commit ce1d63f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test__oauth2client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def test__convert_appengine_app_assertion_credentials(
119119
# `oauth2client` requires `cgi` which was removed in Python 3.13
120120
# See https://github.com/googleapis/oauth2client/blob/50d20532a748f18e53f7d24ccbe6647132c979a9/oauth2client/contrib/appengine.py#L20
121121
# oauth2client is no longer being updated so this test must be skipped on newer Python Runtimes
122-
if sys.version_info >= (3, 13):
122+
if sys.version_info >= (3, 13): # pragma: NO COVER
123123
pytest.skip(
124124
"Skipping test for Python 3.13+ due to oauth2client incompatibility."
125125
)
@@ -176,7 +176,7 @@ def test_import_has_app_engine(
176176
# `oauth2client` requires `cgi` which was removed in Python 3.13
177177
# See https://github.com/googleapis/oauth2client/blob/50d20532a748f18e53f7d24ccbe6647132c979a9/oauth2client/contrib/appengine.py#L20
178178
# oauth2client is no longer being updated so this test must be skipped on newer Python Runtimes
179-
if sys.version_info >= (3, 13):
179+
if sys.version_info >= (3, 13): # pragma: NO COVER
180180
pytest.skip(
181181
"Skipping test for Python 3.13+ due to oauth2client incompatibility."
182182
)

0 commit comments

Comments
 (0)