mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
github actions: omit pypy tests
continue-on-error doesn't work as expected and there is no way to "allow-failure". See https://github.com/actions/toolkit/issues/399.
This commit is contained in:
parent
27269534d2
commit
de0a5fe02e
1 changed files with 5 additions and 2 deletions
7
.github/workflows/tests.yaml
vendored
7
.github/workflows/tests.yaml
vendored
|
@ -3,7 +3,6 @@ on: [push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: ${{ contains(matrix.python-version, 'pypy') }}
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -11,7 +10,11 @@ jobs:
|
||||||
- "3.7"
|
- "3.7"
|
||||||
- "3.8"
|
- "3.8"
|
||||||
- "3.9"
|
- "3.9"
|
||||||
- pypy-3.7
|
# pypy fails in some cases but we don't care much about that
|
||||||
|
# with github actions we can't mark some jobs to not affect the overall
|
||||||
|
# conclusion so we have to omit "allow-failure" tests.
|
||||||
|
# See https://github.com/actions/toolkit/issues/399
|
||||||
|
# - pypy-3.7
|
||||||
deps:
|
deps:
|
||||||
- tornado pycurl
|
- tornado pycurl
|
||||||
- aiohttp
|
- aiohttp
|
||||||
|
|
Loading…
Add table
Reference in a new issue