(path, parent)
| 23 | |
| 24 | @pytest.hookimpl |
| 25 | def pytest_collect_directory(path, parent): |
| 26 | # Use our custom collector for directories containing a `manifest.json` file. |
| 27 | if path.joinpath("manifest.json").is_file(): |
| 28 | return ManifestDirectory.from_parent(parent=parent, path=path) |
| 29 | # Otherwise fallback to the standard behavior. |
| 30 | return None |
nothing calls this directly
no test coverage detected
searching dependent graphs…