Add pylint-exit

This commit is contained in:
Luke Tainton 2022-10-01 11:29:41 +01:00
parent ac13a5e8a1
commit 9118b98c89
No known key found for this signature in database
GPG Key ID: ABEE10849773E353
2 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt && pip install -r requirements-dev.txt
- name: Lint
run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt .
run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . || pylint-exit $?
- name: Run test suite
run: |
coverage run -m py.test -v --junitxml=testresults.xml

View File

@ -1,5 +1,6 @@
black
coverage
pylint
pylint-exit
pytest
requests-mock