From 02cb40e08e0991271d4176dafbf8dc0979b43a23 2021-12-13 00:32:38 From: Matthias Bussonnier Date: 2021-12-13 00:32:38 Subject: [PATCH] Merge pull request #13402 from Kojoley/disable-coverage-on-pypy Disable coverage collection on PyPy --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e53fb5c..9c1083f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,6 +71,6 @@ jobs: env: COLUMNS: 120 run: | - pytest --color=yes -raXxs --cov --cov-report=xml + pytest --color=yes -raXxs ${{ startsWith(matrix.python-version, 'pypy') && ' ' || '--cov --cov-report=xml' }} - name: Upload coverage to Codecov uses: codecov/codecov-action@v2