vij-m2
Results
2
comments of
vij-m2
Hi ImXron, thanks for your response. Prerequisite: pip install asyncio Here is the example: ``` import pytest pytestmark = [pytest.mark.asyncio] async def test_a(): assert True ``` pytest --seconds 2 Output...
Yes, pytest-asyncio is creating event loop only once in the first iteration. It gets closed and doesn't get recreated. Hope someone from pytest or pytest_asyncio can look into it. Thanks.