From ab90a66a8e91784bcd956fb30b1cfe79109ba747 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Mon, 11 Dec 2023 22:41:14 -0800 Subject: [PATCH] (test) cleanup proxy --- litellm/tests/test_proxy_server_keys.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/tests/test_proxy_server_keys.py b/litellm/tests/test_proxy_server_keys.py index db083c30c7..ace3c5527f 100644 --- a/litellm/tests/test_proxy_server_keys.py +++ b/litellm/tests/test_proxy_server_keys.py @@ -37,6 +37,8 @@ async def wrapper_startup_event(): # Make sure the fixture returns TestClient(app) @pytest.fixture(autouse=True) def client(): + from litellm.proxy.proxy_server import cleanup_router_config_variables + cleanup_router_config_variables() with TestClient(app) as client: yield client