(self)
| 558 | """Collector for test classes and functions in a Python module.""" |
| 559 | |
| 560 | def _getobj(self): |
| 561 | return importtestmodule(self.path, self.config) |
| 562 | |
| 563 | def collect(self) -> Iterable[nodes.Item | nodes.Collector]: |
| 564 | self._register_setup_module_fixture() |
no test coverage detected