Skip to content

Commit 498b8c9

Browse files
committed
build: coverage runs have to skip windows pypy too
1 parent 75b22f0 commit 498b8c9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,16 @@ jobs:
5555
- "pypy-3.9"
5656
- "pypy-3.10"
5757
exclude:
58-
# Mac PyPy always takes the longest, and doesn't add anything.
58+
# Mac PyPy always takes the longest, and doesn't add anything. Skip
59+
# 3.8, but use 3.9/3.10 while Windows is still borked.
5960
- os: macos
6061
python-version: "pypy-3.8"
61-
- os: macos
62+
# Windows pypy 3.9 and 3.10 get stuck with PyPy 7.3.15. I hope to
63+
# unstick them, but I don't want that to block all other progress, so
64+
# skip them for now.
65+
- os: windows
6266
python-version: "pypy-3.9"
63-
- os: macos
67+
- os: windows
6468
python-version: "pypy-3.10"
6569
# If one job fails, stop the whole thing.
6670
fail-fast: true

0 commit comments

Comments
 (0)