(self, monkeypatch: pytest.MonkeyPatch, tmp_path: pathlib.Path)
| 217 | |
| 218 | @pytest.fixture(autouse=True) |
| 219 | def _isolate(self, monkeypatch: pytest.MonkeyPatch, tmp_path: pathlib.Path) -> None: |
| 220 | for var in _ALL_ENV: |
| 221 | monkeypatch.delenv(var, raising=False) |
| 222 | monkeypatch.setenv("ANTHROPIC_CONFIG_DIR", str(tmp_path)) |
| 223 | |
| 224 | # -- "type": "external" ------------------------------------------------ |
| 225 |
nothing calls this directly
no outgoing calls
no test coverage detected