(self, tmp_path, capsys, model)
| 427 | ], |
| 428 | ) |
| 429 | def test_no_warning_for_oauth_providers(self, tmp_path, capsys, model): |
| 430 | from openkb.cli import _setup_llm_key |
| 431 | |
| 432 | kb = self._make_kb(tmp_path, model) |
| 433 | _setup_llm_key(kb) |
| 434 | assert "No LLM API key found" not in capsys.readouterr().out |
| 435 | |
| 436 | def test_warning_for_api_key_provider_without_key(self, tmp_path, capsys): |
| 437 | from openkb.cli import _setup_llm_key |
nothing calls this directly
no test coverage detected