Replies: 1 comment
-
You'll need to take a look at the CHANGELOG for this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@pytest.fixture(scope="session") async def test_client() -> typing.AsyncGenerator[AsyncClient, None]: async with AsyncClient(app=application, base_url="http://test", timeout=600) as test_client: yield test_client
We had an AsyncClient with the app parameter, but now it seems to have disappeared in the new version. Why is that? I haven’t found any information about this in the documentation
Beta Was this translation helpful? Give feedback.
All reactions