Glitchtip #3

Merged
luketainton merged 4 commits from glitchtip into main 2022-08-27 19:24:45 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 1044fb262d - Show all commits

View File

@@ -27,7 +27,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: pip install -r requirements.txt && pip install -r requirements-dev.txt run: pip install -r requirements.txt && pip install -r requirements-dev.txt
- name: Lint - 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 - name: Unit Test
run: | run: |
coverage run -m py.test -v --junitxml=testresults.xml coverage run -m py.test -v --junitxml=testresults.xml

View File

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