diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6588a32..4f292f0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,6 +11,8 @@ on: jobs: build: strategy: + # We want to see all failures: + fail-fast: false matrix: config: # [Python version, tox env] @@ -23,8 +25,8 @@ jobs: - ["3.9", "py39"] - ["3.10", "py310"] - ["3.11", "py311"] - - ["pypy2", "pypy"] - - ["pypy3", "pypy3"] + - ["pypy-2.7", "pypy"] + - ["pypy-3.7", "pypy3"] - ["3.8", "coverage"] runs-on: ubuntu-20.04