(tmp_path)
| 22 | |
| 23 | @pytest.fixture() |
| 24 | def repository(tmp_path): |
| 25 | repository_location = os.fspath(tmp_path / "repository") |
| 26 | yield LegacyRepository(repository_location, exclusive=True, create=True) |
| 27 | |
| 28 | |
| 29 | @pytest.fixture() |
nothing calls this directly
no test coverage detected