(tmpdir_factory)
| 526 | |
| 527 | @pytest.fixture(scope="session") |
| 528 | def path1(tmpdir_factory): |
| 529 | path = tmpdir_factory.mktemp("path") |
| 530 | setuptestfs(path) |
| 531 | yield path |
| 532 | assert path.join("samplefile").check() |
| 533 | |
| 534 | |
| 535 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…