()
| 24 | |
| 25 | @pytest_asyncio.fixture(scope="package", autouse=True) |
| 26 | async def test_setup_and_teardown(): |
| 27 | await async_setup() |
| 28 | yield |
| 29 | await async_teardown() |
| 30 | |
| 31 | |
| 32 | pytest_collection_modifyitems = pytest_conf.pytest_collection_modifyitems |
nothing calls this directly
no test coverage detected