Skip to content

Commit

Permalink
attempt to still test pypy3.[67]
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 12, 2024
1 parent c5d3a1b commit 7674588
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,18 @@ jobs:
run: make py_test LINT=false benchmark_flags=

- name: Run tests (in parallel)
if: ${{!((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy'))}}
if: ${{!((matrix.os == 'ubuntu-latest' && matrix.version == '3.12') || contains(matrix.version, 'graalpy') || (matrix.version == 'pypy3.6') || (matrix.version == 'pypy3.7'))}}
run: make py_test_auto LINT=false COV=true

- name: Run tests (in parallel, w/ minimum dependencies)
if: ${{(matrix.version == 'pypy3.6') || (matrix.version == 'pypy3.7')}}
run: |
sed '/pytest-[^b\n][^\n]*/d' python/requirements.txt
sed '/coverage/d' python/requirements.txt
make py_test_auto LINT=false COV=false
- name: Upload coverage reports to Codecov
if: ${{!contains(matrix.version, 'graalpy')}}
if: ${{!contains(matrix.version, 'graalpy') && matrix.version != 'pypy3.6' && matrix.version != 'pypy3.7'}}
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 7674588

Please sign in to comment.