(tmp_path: Path, monkeypatch: pytest.MonkeyPatch)
| 108 | |
| 109 | @pytest.fixture |
| 110 | def config_path(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> Iterator[Path]: |
| 111 | config_path = tmp_path / "config" |
| 112 | monkeypatch.delenv("COPIER_SETTINGS_PATH", raising=False) |
| 113 | with patch("copier._settings.user_config_path", return_value=config_path): |
| 114 | yield config_path |
| 115 | |
| 116 | |
| 117 | @pytest.fixture |
nothing calls this directly
no outgoing calls
no test coverage detected