summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-30 17:36:36 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-30 17:46:17 -0500
commit85c7a4ac4161c4eb2efeaf07e6f833d3a073b018 (patch)
treee532515cdbceeec783f6c627dcd1abcad98b6ac0 /.github
parentce5909536dddbead4ff9ccea335a1a7de8a0cde7 (diff)
downloadpython-coveragepy-git-85c7a4ac4161c4eb2efeaf07e6f833d3a073b018.tar.gz
test: include all the pypy versions when measuring coverage
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/coverage.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 7b5f28ac..cde01bd5 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -49,13 +49,23 @@ jobs:
- "3.10"
- "3.11"
- "pypy-3.7"
+ - "pypy-3.8"
+ - "pypy-3.9"
exclude:
# Windows PyPy doesn't seem to work?
- os: windows-latest
python-version: "pypy-3.7"
+ - os: windows-latest
+ python-version: "pypy-3.8"
+ - os: windows-latest
+ python-version: "pypy-3.9"
# Mac PyPy always takes the longest, and doesn't add anything.
- os: macos-latest
python-version: "pypy-3.7"
+ - os: macos-latest
+ python-version: "pypy-3.8"
+ - os: macos-latest
+ python-version: "pypy-3.9"
# If one job fails, stop the whole thing.
fail-fast: true