From 7ed18dae90ef28dbdec37495ee66204958f2f521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20L=C3=B3pez?= <12056704+virtualex-itv@users.noreply.github.com> Date: Fri, 10 Jul 2026 22:25:28 -0400 Subject: [PATCH] test(model): isolate custom-provider grouping tests from live discovery --- tests/hermes_cli/test_model_switch_custom_providers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/hermes_cli/test_model_switch_custom_providers.py b/tests/hermes_cli/test_model_switch_custom_providers.py index 47e65a25d283..4bf57a2f345f 100644 --- a/tests/hermes_cli/test_model_switch_custom_providers.py +++ b/tests/hermes_cli/test_model_switch_custom_providers.py @@ -664,6 +664,7 @@ def test_list_authenticated_providers_groups_same_endpoint(monkeypatch): "api_key": "ollama", "model": "qwen3-coder"}, ], max_models=50, + probe_custom_providers=False, ) custom_groups = [p for p in providers if p.get("is_user_defined")] @@ -748,6 +749,7 @@ def test_list_authenticated_providers_distinct_endpoints_stay_separate(monkeypat "api_key": "ollama", "model": "qwen3-coder"}, ], max_models=50, + probe_custom_providers=False, ) custom_groups = [p for p in providers if p.get("is_user_defined")] @@ -841,6 +843,7 @@ def test_list_authenticated_providers_total_models_reflects_grouped_count(monkey user_providers={}, custom_providers=entries, max_models=4, + probe_custom_providers=False, ) groups = [p for p in providers if p.get("is_user_defined")]