(
path: Path, parent: nodes.Collector
)
| 473 | |
| 474 | |
| 475 | def pytest_collect_directory( |
| 476 | path: Path, parent: nodes.Collector |
| 477 | ) -> nodes.Collector | None: |
| 478 | return Dir.from_parent(parent, path=path) |
| 479 | |
| 480 | |
| 481 | def pytest_collection_modifyitems(items: list[nodes.Item], config: Config) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…