From 498b8c9caca6d0c9fbc10c5f753e4a8521b5c0bc Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 25 Jan 2024 17:34:31 -0500 Subject: [PATCH] build: coverage runs have to skip windows pypy too --- .github/workflows/coverage.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index ddb09d150..5bd88afa1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -55,12 +55,16 @@ jobs: - "pypy-3.9" - "pypy-3.10" exclude: - # Mac PyPy always takes the longest, and doesn't add anything. + # Mac PyPy always takes the longest, and doesn't add anything. Skip + # 3.8, but use 3.9/3.10 while Windows is still borked. - os: macos python-version: "pypy-3.8" - - os: macos + # Windows pypy 3.9 and 3.10 get stuck with PyPy 7.3.15. I hope to + # unstick them, but I don't want that to block all other progress, so + # skip them for now. + - os: windows python-version: "pypy-3.9" - - os: macos + - os: windows python-version: "pypy-3.10" # If one job fails, stop the whole thing. fail-fast: true