diff --git a/.github/workflows/test-linting.yml b/.github/workflows/test-linting.yml index ffca305a0d..6162c53f95 100644 --- a/.github/workflows/test-linting.yml +++ b/.github/workflows/test-linting.yml @@ -44,7 +44,7 @@ jobs: - name: Run MyPy type checking run: | cd litellm - poetry run mypy . --ignore-missing-imports + poetry run mypy . --config-file=mypy.ini cd .. - name: Check for circular imports diff --git a/.github/workflows/test-litellm.yml b/.github/workflows/test-litellm.yml index 0d3a9f2b5d..b6b77ad326 100644 --- a/.github/workflows/test-litellm.yml +++ b/.github/workflows/test-litellm.yml @@ -40,4 +40,4 @@ jobs: cd .. - name: Run tests run: | - poetry run pytest tests/test_litellm -x -vv -n 4 + poetry run pytest tests/test_litellm -vv -n 4