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 7b31756 commit cc9f19bCopy full SHA for cc9f19b
tests/test_e2e.py
@@ -1333,6 +1333,9 @@ def test_at_pop_calling_pattern(self):
1333
nonce=self._extract_pop_nonce(resp.headers.get("WWW-Authenticate")),
1334
),
1335
))
1336
+ # The api_endpoint being used is a test setup without proper SSL cert,
1337
+ # so we suppress the CodeQL warning for disabling SSL certificate checks
1338
+ # @suppress py/bandit/requests-ssl-verify-disabled
1339
resp = requests.get(api_endpoint, verify=False, headers={
1340
"Authorization": "pop {}".format(result["access_token"]),
1341
})
0 commit comments