This commit is contained in:
Will McGugan 2020-07-16 16:58:03 +01:00
parent 0845382bf5
commit 93cd936b58
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
- name: Test with pytest
run: |
pip install .
pytest tests/ -v --cov=rich --cov-report=xml:./coverage-${{ matrix.os }}.xml --cov-append
pytest tests/ -v --cov=./rich --cov-report=xml:./coverage-${{ matrix.os }}.xml --cov-append
- name: Upload code coverage
uses: codecov/codecov-action@v1
@ -36,4 +36,4 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage-${{ matrix.os }}.xml
name: rich
flags: unittests
flags: unittests-${{ matrix.os }}