(module_path: Path, parent)
| 213 | |
| 214 | |
| 215 | def pytest_pycollect_makemodule(module_path: Path, parent) -> Module: |
| 216 | return Module.from_parent(parent, path=module_path) |
| 217 | |
| 218 | |
| 219 | @hookimpl(trylast=True) |
nothing calls this directly
no test coverage detected