diff --git a/.circleci/config.yml b/.circleci/config.yml index dfaf479f2..0fe72ef80 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ jobs: name: Linting Testing command: | cd litellm - python -m pip install types-requests types-setuptools + python -m pip install types-requests types-setuptools types-redis if ! python -m mypy . --ignore-missing-imports; then echo "mypy detected errors" exit 1 diff --git a/litellm/tests/test_caching.py b/litellm/tests/test_caching.py index fdd9fe798..c4d89bc98 100644 --- a/litellm/tests/test_caching.py +++ b/litellm/tests/test_caching.py @@ -14,7 +14,7 @@ from litellm import embedding, completion from litellm.caching import Cache messages = [{"role": "user", "content": "who is ishaan Github? "}] - +# comment # test if response cached def test_caching():