From 8e9a4fa9eb97068354d182c2de3add7c2fccf782 Mon Sep 17 00:00:00 2001 From: Mehmet Bektas Date: Mon, 6 May 2024 20:13:11 -0700 Subject: [PATCH] comment out test method calls, following the pattern --- litellm/tests/test_ollama.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/tests/test_ollama.py b/litellm/tests/test_ollama.py index cc33ea9939..77a6c91c3e 100644 --- a/litellm/tests/test_ollama.py +++ b/litellm/tests/test_ollama.py @@ -83,7 +83,7 @@ def test_ollama_embeddings(mock_embeddings): ) except Exception as e: pytest.fail(f"Error occurred: {e}") -test_ollama_embeddings() +# test_ollama_embeddings() @mock.patch( "litellm.llms.ollama.ollama_aembeddings", @@ -105,4 +105,4 @@ def test_ollama_aembeddings(mock_aembeddings): ) except Exception as e: pytest.fail(f"Error occurred: {e}") -test_ollama_aembeddings() +# test_ollama_aembeddings()