We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ced392c commit 771ef81Copy full SHA for 771ef81
tests/test_jwks_client.py
@@ -6,6 +6,8 @@
6
from jwt.api_jwk import PyJWK
7
from jwt.exceptions import PyJWKClientError
8
9
+from .test_algorithms import has_crypto
10
+
11
12
@pytest.fixture
13
def mocked_response():
@@ -27,6 +29,9 @@ def mocked_response():
27
29
}
28
30
31
32
+@pytest.mark.skipif(
33
+ not has_crypto, reason="Not supported without cryptography library"
34
+)
35
class TestPyJWKClient:
36
def test_get_jwk_set(self, mocked_response):
37
url = "https://dev-87evx9ru.auth0.com/.well-known/jwks.json"
0 commit comments