From f807bdd2751172229194e84720f9dcd779f20b61 Mon Sep 17 00:00:00 2001 From: pi3c Date: Sun, 4 Feb 2024 00:24:09 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20pydantic=20=D0=B2=D0=B0=D0=BB=D0=B8=D0=B4=D0=B0?= =?UTF-8?q?=D1=86=D0=B8=D1=8E,=20=D1=83=D0=B1=D1=80=D0=B0=D0=BB=20=D0=BA?= =?UTF-8?q?=D0=BE=D1=81=D1=82=D1=8B=D0=BB=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index c0c253c..4dd381e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -52,7 +52,7 @@ def app(event_loop) -> Generator[FastAPI, None, None]: yield app -@pytest_asyncio.fixture() +@pytest_asyncio.fixture(scope='session') async def client(app) -> AsyncGenerator[AsyncClient, None]: async with AsyncClient( app=app,