We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737aa9d commit 360f120Copy full SHA for 360f120
.github/workflows/tests.yml
@@ -91,8 +91,12 @@ jobs:
91
with:
92
string: '${{ matrix.name }}'
93
split-by: '-'
94
- - name: Test with tox
+ - name: Test with coverage
95
+ if: "! contains(matrix.name, 'pypy3')"
96
run: python -m tox -e ${{ steps.split-matrix-name.outputs._0}}-cov
97
+ - name: Test without coverage
98
+ if: "contains(matrix.name, 'pypy3')"
99
+ run: python -m tox -e ${{ steps.split-matrix-name.outputs._0}}
100
# TODO: https://github.com/pytest-dev/pytest-html/issues/481
101
# - name: Upload coverage to codecov
102
# if: github.event.schedule == ''
0 commit comments