From de75cd777e5d341dfa86da8289e308984346729c Mon Sep 17 00:00:00 2001 From: Michael Riad Zaky Date: Wed, 29 Apr 2026 14:02:15 -0700 Subject: [PATCH] test_proxy_routes: dedupe lazy force-load to match vector_store test pattern --- tests/proxy_unit_tests/test_proxy_routes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/proxy_unit_tests/test_proxy_routes.py b/tests/proxy_unit_tests/test_proxy_routes.py index 67eca5206d..ac408b278a 100644 --- a/tests/proxy_unit_tests/test_proxy_routes.py +++ b/tests/proxy_unit_tests/test_proxy_routes.py @@ -46,7 +46,10 @@ def test_routes_on_litellm_proxy(): from litellm.proxy._lazy_features import LAZY_FEATURES + registered_paths = [getattr(r, "path", "") for r in app.routes] for feat in LAZY_FEATURES: + if any(rp.startswith(p) for p in feat.path_prefixes for rp in registered_paths): + continue try: module = importlib.import_module(feat.module_path) feat.register_fn(app, module)