From 1cc38f05f43c1e2108fc3a35f1e81b8498e35805 Mon Sep 17 00:00:00 2001 From: Yuneng Jiang Date: Mon, 21 Sep 2026 15:00:24 -0700 Subject: [PATCH] test(proxy): type the router settings source test parameters --- .../management_endpoints/test_router_settings_endpoints.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_litellm/proxy/management_endpoints/test_router_settings_endpoints.py b/tests/test_litellm/proxy/management_endpoints/test_router_settings_endpoints.py index 889bed13099..3fcda310435 100644 --- a/tests/test_litellm/proxy/management_endpoints/test_router_settings_endpoints.py +++ b/tests/test_litellm/proxy/management_endpoints/test_router_settings_endpoints.py @@ -89,7 +89,9 @@ class TestRouterSettingsEndpoints: assert len(routing_strategy_field["options"]) > 0 @pytest.mark.asyncio - async def test_get_router_settings_reports_sources(self, monkeypatch): + async def test_get_router_settings_reports_sources( + self, monkeypatch: pytest.MonkeyPatch + ) -> None: store = SettingsStore("router_settings") store.load_yaml({"routing_strategy": "simple-shuffle"}) store.apply_db_row("router_settings", {"num_retries": 3})