1
0
Fork 0
mirror of synced 2024-05-19 11:42:40 +12:00

test.yml: add coverage report (#282)

This commit is contained in:
Ali Parlakçı 2021-04-20 16:43:25 +03:00 committed by GitHub
parent 61489dc73d
commit b355fb6500
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip flake8 pytest
python -m pip install --upgrade pip flake8 pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Setup test configuration
@ -40,4 +40,4 @@ jobs:
- name: Test w/ PyTest
run: |
pytest -m 'not slow' --verbose
pytest -m 'not slow' --verbose --cov=./bdfr/ --cov-report term:skip-covered