(self, tmp_path_factory: TempPathFactory)
| 86 | |
| 87 | @pytest.fixture(scope="session") |
| 88 | def path1(self, tmp_path_factory: TempPathFactory) -> Generator[Path, None, None]: |
| 89 | path = tmp_path_factory.mktemp("path") |
| 90 | self.setuptestfs(path) |
| 91 | yield path |
| 92 | assert path.joinpath("samplefile").exists() |
| 93 | |
| 94 | def setuptestfs(self, path: Path) -> None: |
| 95 | # print "setting up test fs for", repr(path) |
nothing calls this directly
no test coverage detected