1 changed files with 6 additions and 10 deletions
@ -8,23 +8,19 @@ from ...utils import needs_pydanticv1, needs_pydanticv2 |
|||
|
|||
|
|||
@pytest.fixture( |
|||
name="app", |
|||
params=[ |
|||
pytest.param("tutorial001", marks=needs_pydanticv2), |
|||
pytest.param("tutorial001_pv1", marks=needs_pydanticv1), |
|||
], |
|||
) |
|||
def get_app(request: pytest.FixtureRequest): |
|||
def app_wrapper(): |
|||
mod = importlib.import_module(f"docs_src.settings.{request.param}") |
|||
return mod.app |
|||
|
|||
return app_wrapper |
|||
|
|||
|
|||
def test_settings(get_app, monkeypatch: MonkeyPatch): |
|||
def get_app(request: pytest.FixtureRequest, monkeypatch: MonkeyPatch): |
|||
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]") |
|||
mod = importlib.import_module(f"docs_src.settings.{request.param}") |
|||
return mod.app |
|||
|
|||
|
|||
app = get_app() |
|||
def test_settings(app): |
|||
client = TestClient(app) |
|||
response = client.get("/info") |
|||
assert response.status_code == 200, response.text |
|||
|
Loading…
Reference in new issue