(self, node_path: Path)
| 503 | return self.config.invocation_params.dir |
| 504 | |
| 505 | def _node_location_to_relpath(self, node_path: Path) -> str: |
| 506 | # bestrelpath is a quite slow function. |
| 507 | return self._bestrelpathcache[node_path] |
| 508 | |
| 509 | @hookimpl(tryfirst=True) |
| 510 | def pytest_collectstart(self) -> None: |