mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #780 from nwithan8/master
Make sure pytest actually fails CI on windows
This commit is contained in:
commit
099a319d1a
1 changed files with 4 additions and 1 deletions
5
.github/workflows/test.yaml
vendored
5
.github/workflows/test.yaml
vendored
|
@ -56,9 +56,12 @@ jobs:
|
||||||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file=flake8.output
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --output-file=flake8.output
|
||||||
cat flake8.output
|
cat flake8.output
|
||||||
|
|
||||||
- name: Test with Coverage
|
- name: Run tests and generate coverage
|
||||||
run: |
|
run: |
|
||||||
coverage run
|
coverage run
|
||||||
|
|
||||||
|
- name: Generate coverage report
|
||||||
|
run: |
|
||||||
coverage xml
|
coverage xml
|
||||||
coverage report
|
coverage report
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue