Skip to content

Commit

Permalink
test: don't run tests on Windows PyPy-3.9
Browse files Browse the repository at this point in the history
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())
```
  • Loading branch information
nedbat committed Dec 21, 2022
1 parent 5c5caa2 commit 873b059
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 873b059

Please sign in to comment.