Temporary configuration for tests.
(tmp_path: Path)
| 27 | |
| 28 | @pytest.fixture |
| 29 | def configuration(tmp_path: Path) -> Configuration: |
| 30 | """Temporary configuration for tests.""" |
| 31 | return Configuration( |
| 32 | storage_dir=str(tmp_path), |
| 33 | ) |
| 34 | |
| 35 | |
| 36 | @pytest.fixture |
nothing calls this directly
no test coverage detected