(module_path: Path, parent)
| 216 | |
| 217 | |
| 218 | def pytest_pycollect_makemodule(module_path: Path, parent) -> "Module": |
| 219 | if module_path.name == "__init__.py": |
| 220 | pkg: Package = Package.from_parent(parent, path=module_path) |
| 221 | return pkg |
| 222 | mod: Module = Module.from_parent(parent, path=module_path) |
| 223 | return mod |
| 224 | |
| 225 | |
| 226 | @hookimpl(trylast=True) |
nothing calls this directly
no test coverage detected