Github Actions: Run tests even if code style validation fails

The test suite will still fail, but we get all issues reported instead of just code style issues.
This commit is contained in:
Philipp Wolfer
2019-11-27 08:57:14 +01:00
parent a4c123bc25
commit 89d6097125

View File

@@ -45,6 +45,7 @@ jobs:
flake8 picard --count --show-source --statistics
isort --check-only --diff --recursive picard test
- name: Test with pytest
if: always()
run: |
pip install pytest pytest-randomly pytest-cov
pytest --verbose --cov=picard --cov-report xml:coverage.xml test