(self, tmp_path_factory: TempPathFactory)
| 130 | |
| 131 | @pytest.fixture(scope="session") |
| 132 | def path1(self, tmp_path_factory: TempPathFactory) -> Generator[Path]: |
| 133 | path = tmp_path_factory.mktemp("path") |
| 134 | self.setuptestfs(path) |
| 135 | yield path |
| 136 | assert path.joinpath("samplefile").exists() |
| 137 | |
| 138 | @pytest.fixture(autouse=True) |
| 139 | def preserve_sys(self): |
nothing calls this directly
no test coverage detected