summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-12-21 18:46:53 -0500
committerNed Batchelder <ned@nedbatchelder.com>2022-12-21 18:48:13 -0500
commit873b05997520bc27a28e63dd5654f5a9429afdb4 (patch)
treea749a1142f59ddf4933f4dcabcc5012d04d3c6b9 /.github
parent5c5caa2489bb939b4bbc2af474384f82a5da6407 (diff)
downloadpython-coveragepy-git-873b05997520bc27a28e63dd5654f5a9429afdb4.tar.gz
test: don't run tests on Windows PyPy-3.9
It's always failing with: ``` ---------------------------- Captured stdout setup ---------------------------- Processing c:\users\runneradmin\appdata\local\temp\pytest-of-runneradmin\pytest-0\popen-gw1\venv_world0\third_pkg Preparing metadata (setup.py): started Preparing metadata (setup.py): finished with status 'done' Processing d:\a\coveragepy\coveragepy Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'error' error: subprocess-exited-with-error × Getting requirements to build wheel did not run successfully. │ exit code: 3221226505 ╰─> [10 lines of output] running egg_info writing coverage.egg-info\PKG-INFO writing dependency_links to coverage.egg-info\dependency_links.txt writing entry points to coverage.egg-info\entry_points.txt writing requirements to coverage.egg-info\requires.txt writing top-level names to coverage.egg-info\top_level.txt reading manifest file 'coverage.egg-info\SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'doc\_build' no previously-included directories found matching 'doc\_spell' [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. error: subprocess-exited-with-error ``` 3221226505 is: ``` <Yhg1s> nedbat: it was killed with SIGKILL. (exit code 3221226505 is -1073740791, which is 'killed with signal 9') <Yhg1s> (according to os.WIFSIGNALED() and os.WTERMSIG()) ```
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/testsuite.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml
index 30b83856..e0798963 100644
--- a/.github/workflows/testsuite.yml
+++ b/.github/workflows/testsuite.yml
@@ -51,6 +51,10 @@ jobs:
- "3.11"
- "pypy-3.7"
- "pypy-3.9"
+ exclude:
+ # Windows PyPy-3.9 always gets killed.
+ - os: windows
+ python-version: "pypy-3.9"
fail-fast: false
steps: