Replies: 2 comments
|
You'll need to take a look at the CHANGELOG for this. |
0 replies
|
For those coming after: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
@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_clientWe 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
All reactions