Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/hermes_cli/test_model_switch_custom_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down Expand Up @@ -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")]
Expand Down Expand Up @@ -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")]
Expand Down
Loading