(self, pytester: Pytester, *, _ispytest: bool = False)
| 52 | TimeoutExpired: "Final" = Pytester.TimeoutExpired |
| 53 | |
| 54 | def __init__(self, pytester: Pytester, *, _ispytest: bool = False) -> None: |
| 55 | check_ispytest(_ispytest) |
| 56 | self._pytester = pytester |
| 57 | |
| 58 | @property |
| 59 | def tmpdir(self) -> LEGACY_PATH: |
nothing calls this directly
no test coverage detected