test: remove gemini_cli references in 6 + delete test_ai_client_list_models.py

Drop stale gemini_cli expectations: PROVIDERS expectations in
test_providers_source_of_truth + test_provider_curation, the
test_list_models_gemini_cli function (deleted the whole file since it
was the only test), the test_discussion_compression_gemini_cli function,
the test_gcli_path_updates_adapter function (its setter was removed),
the ui_gemini_cli_path references in test_mma_tier_usage_reset_fix and
test_rag_integration. These are the t1.9 minor edits.
This commit is contained in:
ed
2026-07-05 19:56:57 -04:00
parent 832a030500
commit edebeac619
7 changed files with 5 additions and 37 deletions
+1 -2
View File
@@ -34,12 +34,11 @@ def controller(tmp_path: Path) -> AppController:
ctrl = AppController()
ctrl.active_project_path = str(proj_path)
# _flush_to_project reads several UI flags that __init__ does not set
# (ui_project_preset_name, ui_word_wrap, ui_gemini_cli_path,
# (ui_project_preset_name, ui_word_wrap,
# ui_auto_add_history). Set them so the test exercises the
# mma_tier_usage code path without tripping on unrelated missing attrs.
ctrl.ui_project_preset_name = None
ctrl.ui_word_wrap = True
ctrl.ui_gemini_cli_path = ""
ctrl.ui_auto_add_history = False
yield ctrl