(monkeypatch: pytest.MonkeyPatch)
| 21 | |
| 22 | |
| 23 | def test_llm_model_env_override(monkeypatch: pytest.MonkeyPatch): |
| 24 | monkeypatch.setenv("LLM_MODEL", "claude-opus-4-6") |
| 25 | model = build_model() |
| 26 | assert model.model == "claude-opus-4-6" |
| 27 | |
| 28 | |
| 29 | def test_gpt_model_names_route_to_openai_fallback(monkeypatch: pytest.MonkeyPatch): |
nothing calls this directly
no test coverage detected