From a569e4d7114e1f563e8a8f9dd30848677b4e8647 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 27 Sep 2025 10:23:46 -0700 Subject: [PATCH] test: update test to not stop on first error (allows us to see all issues) --- .github/workflows/test-linting.yml | 2 +- .github/workflows/test-litellm.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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