from pathlib import Path import pytest import planemapper.provisioning.config as config_module @pytest.fixture(autouse=True) def patch_config_path(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None: monkeypatch.setattr(config_module, "CONFIG_PATH", tmp_path / "config.json")