(items: list[pytest.Item])
| 19 | |
| 20 | |
| 21 | def pytest_collection_modifyitems(items: list[pytest.Item]) -> None: |
| 22 | for item in items: |
| 23 | if "integration" in str(item.fspath): |
| 24 | item.add_marker(pytest.mark.integration) |
nothing calls this directly
no outgoing calls
no test coverage detected