Merge pull request #780 from nwithan8/master

Make sure pytest actually fails CI on windows
This commit is contained in:
Odd Stråbø 2023-10-05 21:18:58 +02:00 committed by GitHub
commit 099a319d1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -56,9 +56,12 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file=flake8.output
cat flake8.output
- name: Test with Coverage
- name: Run tests and generate coverage
run: |
coverage run
- name: Generate coverage report
run: |
coverage xml
coverage report