ci(server): Run tests even if linting fails

This commit is contained in:
Reinier van der Leer 2024-08-29 15:04:15 +02:00
parent 087d3a3760
commit 96ef35536c
No known key found for this signature in database
GPG Key ID: BEB9E26CB6F21336

View File

@ -134,13 +134,15 @@ jobs:
if: matrix.db-platform == 'sqlite'
run: poetry run prisma migrate dev --name updates
- name: Run Linter
- id: lint
name: Run Linter
run: poetry run lint
- name: Run pytest with coverage
run: |
poetry run pytest -vv \
test
if: success() || (failure() && steps.lint.outcome == 'failure')
env:
CI: true
PLAIN_OUTPUT: True