test: skip local proxy test in circle ci

This commit is contained in:
Krrish Dholakia 2023-12-07 13:56:17 -08:00
parent b6e8cb7dcd
commit f6e044640d

View file

@ -18,6 +18,8 @@ from litellm import embedding, completion
from litellm.caching import Cache from litellm.caching import Cache
messages = [{"role": "user", "content": f"who is ishaan {time.time()}"}] 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 def test_caching_v2(): # test in memory cache
try: try:
response1 = completion(model="openai/gpt-3.5-turbo", messages=messages, api_base="http://0.0.0.0:8000") response1 = completion(model="openai/gpt-3.5-turbo", messages=messages, api_base="http://0.0.0.0:8000")