DEBSOURCES
Skip Quicknav
sources / python-pytest-asyncio / 0.25.1-1 / docs / how-to-guides / test_item_is_async_example.py
1234567
from pytest_asyncio import is_async_test def pytest_collection_modifyitems(items): for item in items: if is_async_test(item): pass