Skip to content

Commit 360f120

Browse files
authored
Skip coverage for pypy3 (#495)
1 parent 737aa9d commit 360f120

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,12 @@ jobs:
9191
with:
9292
string: '${{ matrix.name }}'
9393
split-by: '-'
94-
- name: Test with tox
94+
- name: Test with coverage
95+
if: "! contains(matrix.name, 'pypy3')"
9596
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}}
96100
# TODO: https://github.com/pytest-dev/pytest-html/issues/481
97101
# - name: Upload coverage to codecov
98102
# if: github.event.schedule == ''

0 commit comments

Comments
 (0)