From 2abcf047ad68fd93ca2f2c0ca43a5811a064932b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jim=20Br=C3=A4nnlund?= Date: Wed, 26 Jan 2022 13:01:30 +0100 Subject: [PATCH] Skip coverage for pypy3 --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42afa78d..04faeaa4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 == ''