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 38d908e commit 87465ceCopy full SHA for 87465ce
tests/conftest.py
@@ -46,5 +46,11 @@ def source_api_server(source_api):
46
@pytest.fixture
47
def proxy_app(source_api_server: str) -> FastAPI:
48
"""Fixture for the proxy app, pointing to the source API."""
49
- test_app_settings = Settings(upstream_url=source_api_server, default_public=False)
+ test_app_settings = Settings(
50
+ upstream_url=source_api_server,
51
+ oidc_discovery_url="https://samples.auth0.com/.well-known/openid-configuration",
52
+ default_public=False,
53
+ _env_file=".env.test",
54
+ )
55
+ print(f"{test_app_settings=}")
56
return create_app(test_app_settings)
0 commit comments