test: update test to not stop on first error (allows us to see all issues)

This commit is contained in:
Krrish Dholakia
2025-09-27 10:23:46 -07:00
parent 7278ae5305
commit a569e4d711
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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