-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5d3a1b
commit 7674588
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} |