diff --git a/.circleci/config.yml b/.circleci/config.yml index 4dbaa625f..dfaf479f2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,6 +33,7 @@ jobs: name: Linting Testing command: | cd litellm + python -m pip install types-requests types-setuptools if ! python -m mypy . --ignore-missing-imports; then echo "mypy detected errors" exit 1 diff --git a/litellm/tests/test_bad_params.py b/litellm/tests/test_bad_params.py index c43e71261..6a5409a51 100644 --- a/litellm/tests/test_bad_params.py +++ b/litellm/tests/test_bad_params.py @@ -50,4 +50,4 @@ try: except: print(f"error occurred: {traceback.format_exc()}") pass -os.environ["OPENAI_API_KEY"] = temp_key # this fails linting#3 +os.environ["OPENAI_API_KEY"] = temp_key # this fails linting#4