Open malinoff opened 7 years ago
https://github.com/pytest-dev/pytest-asyncio has a very convenient feature: async (generator) fixtures. I.e.
@pytest.fixture() async def connection(): async with Connection() as conn: yield conn
I'd like to also have async (generator) fixtures in pytest-curio.
pytest-curio
Hello, this seem to be the case with the last release
https://github.com/pytest-dev/pytest-asyncio has a very convenient feature: async (generator) fixtures. I.e.
I'd like to also have async (generator) fixtures in
pytest-curio
.