Skip to content

Commit 87465ce

Browse files
committed
add missing dummy test env val
1 parent 38d908e commit 87465ce

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/conftest.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,11 @@ def source_api_server(source_api):
4646
@pytest.fixture
4747
def proxy_app(source_api_server: str) -> FastAPI:
4848
"""Fixture for the proxy app, pointing to the source API."""
49-
test_app_settings = Settings(upstream_url=source_api_server, default_public=False)
49+
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=}")
5056
return create_app(test_app_settings)

0 commit comments

Comments
 (0)