mirror of
https://github.com/lilydjwg/nvchecker
synced 2025-02-17 19:17:21 +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
7
.github/workflows/tests.yaml
vendored
7
.github/workflows/tests.yaml
vendored
@ -3,7 +3,6 @@ on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: ${{ contains(matrix.python-version, 'pypy') }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@ -11,7 +10,11 @@ jobs:
|
||||
- "3.7"
|
||||
- "3.8"
|
||||
- "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:
|
||||
- tornado pycurl
|
||||
- aiohttp
|
||||
|
Loading…
Reference in New Issue
Block a user