(self, node_path: Path)
| 684 | return self.config.invocation_params.dir |
| 685 | |
| 686 | def _node_location_to_relpath(self, node_path: Path) -> str: |
| 687 | # bestrelpath is a quite slow function. |
| 688 | return self._bestrelpathcache[node_path] |
| 689 | |
| 690 | @hookimpl(tryfirst=True) |
| 691 | def pytest_collectstart(self) -> None: |