Skip to content

Commit

Permalink
Skip coverage for pypy3
Browse files Browse the repository at this point in the history
  • Loading branch information
BeyondEvil committed Jan 26, 2022
1 parent 737aa9d commit 2abcf04
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Expand Up @@ -91,8 +91,12 @@ jobs:
with:
string: '${{ matrix.name }}'
split-by: '-'
- name: Test with tox
- name: Test with coverage
if: "! contains(matrix.name, 'pypy3')"
run: python -m tox -e ${{ steps.split-matrix-name.outputs._0}}-cov
- name: Test without coverage
if: "contains(matrix.name, 'pypy3')"
run: python -m tox -e ${{ steps.split-matrix-name.outputs._0}}
# TODO: https://github.com/pytest-dev/pytest-html/issues/481
# - name: Upload coverage to codecov
# if: github.event.schedule == ''
Expand Down

0 comments on commit 2abcf04

Please sign in to comment.