Merge branch 'main' into glitchtip

This commit is contained in:
2022-08-27 20:18:30 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -27,7 +27,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: Unit Test
run: |
coverage run -m py.test -v --junitxml=testresults.xml

View File

@@ -1,4 +1,5 @@
black
coverage
pylint
pylint-exit
pytest