diff --git a/.circleci/config.yml b/.circleci/config.yml index 4d3639ab2..07f485b93 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,8 +25,8 @@ jobs: command: | python -m pip install --upgrade pip python -m pip install -r .circleci/requirements.txt - pip install pytest - pip install pytest-asyncio + pip install "pytest==7.3.1" + pip install "pytest-asyncio==0.21.1" pip install mypy pip install "google-generativeai>=0.3.2" pip install "google-cloud-aiplatform>=1.38.0" @@ -37,6 +37,9 @@ jobs: pip install traceloop-sdk==0.0.69 pip install openai pip install prisma + pip install "httpx==0.24.1" + pip install "anyio==3.7.1" + pip install "asyncio==3.4.3" - save_cache: paths: - ./venv diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index fe07e4493..b3054b996 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -739,7 +739,7 @@ def test_completion_openai_litellm_key(): pytest.fail(f"Error occurred: {e}") -# test_completion_openai_litellm_key() +# test_ completion_openai_litellm_key() def test_completion_ollama_hosted():