Browse Source

Fixes after review

pull/13505/head
Valentyn Druzhynin 2 weeks ago
parent
commit
a6d187025d
  1. 12
      tests/test_tutorial/test_settings/test_tutorial001.py

12
tests/test_tutorial/test_settings/test_tutorial001.py

@ -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():
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
return app_wrapper
def test_settings(get_app, monkeypatch: MonkeyPatch):
monkeypatch.setenv("ADMIN_EMAIL", "[email protected]")
app = get_app()
def test_settings(app):
client = TestClient(app)
response = client.get("/info")
assert response.status_code == 200, response.text

Loading…
Cancel
Save