Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -1333,6 +1333,9 @@ def test_at_pop_calling_pattern(self):
nonce=self._extract_pop_nonce(resp.headers.get("WWW-Authenticate")),
),
))
# The api_endpoint is for test only and has no proper SSL certificate,
# so we suppress the CodeQL warning for disabling SSL certificate checks
# @suppress py/bandit/requests-ssl-verify-disabled
resp = requests.get(api_endpoint, verify=False, headers={
"Authorization": "pop {}".format(result["access_token"]),
})
Expand Down
Loading