From f6e044640d48902a736ddfa92ec1a43a015bd340 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Thu, 7 Dec 2023 13:56:17 -0800 Subject: [PATCH] test: skip local proxy test in circle ci --- litellm/tests/test_proxy_server_caching.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/tests/test_proxy_server_caching.py b/litellm/tests/test_proxy_server_caching.py index 7befaff656..a62b08e31a 100644 --- a/litellm/tests/test_proxy_server_caching.py +++ b/litellm/tests/test_proxy_server_caching.py @@ -18,6 +18,8 @@ from litellm import embedding, completion from litellm.caching import Cache messages = [{"role": "user", "content": f"who is ishaan {time.time()}"}] + +@pytest.mark.skip(reason="local proxy test") def test_caching_v2(): # test in memory cache try: response1 = completion(model="openai/gpt-3.5-turbo", messages=messages, api_base="http://0.0.0.0:8000")