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 2a18c8c commit 1eb5c7bCopy full SHA for 1eb5c7b
tests/test_proxy_oauth_endpoints.py
@@ -24,6 +24,9 @@ def proxy_server(monkeypatch):
24
# construct metadata locally instead of performing an HTTP GET.
25
os.environ.setdefault("UPSTREAM_AUTHORIZATION_ENDPOINT", "https://upstream.example.com/authorize")
26
os.environ.setdefault("UPSTREAM_TOKEN_ENDPOINT", "https://upstream.example.com/token")
27
+ os.environ.setdefault("UPSTREAM_JWKS_URI", "https://upstream.example.com/jwks")
28
+ os.environ.setdefault("UPSTREAM_CLIENT_ID", "client123")
29
+ os.environ.setdefault("UPSTREAM_CLIENT_SECRET", "secret123")
30
31
# Deferred import so the env vars above are in effect.
32
from examples.servers.proxy_oauth import server as proxy_server_module # noqa: WPS433 (runtime import for tests)
0 commit comments