1 changed files with 6 additions and 10 deletions
@ -8,23 +8,19 @@ from ...utils import needs_pydanticv1, needs_pydanticv2 |
|||||
|
|
||||
|
|
||||
@pytest.fixture( |
@pytest.fixture( |
||||
|
name="app", |
||||
params=[ |
params=[ |
||||
pytest.param("tutorial001", marks=needs_pydanticv2), |
pytest.param("tutorial001", marks=needs_pydanticv2), |
||||
pytest.param("tutorial001_pv1", marks=needs_pydanticv1), |
pytest.param("tutorial001_pv1", marks=needs_pydanticv1), |
||||
], |
], |
||||
) |
) |
||||
def get_app(request: pytest.FixtureRequest): |
def get_app(request: pytest.FixtureRequest, monkeypatch: MonkeyPatch): |
||||
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): |
|
||||
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]") |
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) |
client = TestClient(app) |
||||
response = client.get("/info") |
response = client.get("/info") |
||||
assert response.status_code == 200, response.text |
assert response.status_code == 200, response.text |
||||
|
Loading…
Reference in new issue