Skip to content

Commit

Permalink
maybe parallel testing was optimistic on pypy that old
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 12, 2024
1 parent 4e83452 commit 708edc1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@ jobs:
if: ${{contains(matrix.version, 'graalpy')}}
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') || (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)
- name: Run tests (serially, w/ minimum dependencies)
if: ${{(matrix.version == 'pypy3.6') || (matrix.version == 'pypy3.7')}}
run: |
sed -i '/pytest-[^b\n][^\n]*/d' python/requirements.txt
sed -i '/coverage/d' python/requirements.txt
make py_test_auto LINT=false COV=false
make py_test LINT=false COV=false
- name: Run tests (in parallel)
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: Upload coverage reports to Codecov
if: ${{!contains(matrix.version, 'graalpy') && matrix.version != 'pypy3.6' && matrix.version != 'pypy3.7'}}
Expand Down

0 comments on commit 708edc1

Please sign in to comment.