Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove Windows PyPy 3.9 workaround on GHA #533

Merged
merged 1 commit into from Apr 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/test.yml
Expand Up @@ -40,20 +40,6 @@ jobs:
python -m pip install nox
shell: bash

# PyPy 3.9 for Windows changed the binary name from pypy3 to pypy3.9
# PyPy 3.7 & 3.8 for Windows still only have pypy3
# https://foss.heptapod.net/pypy/pypy/-/commit/f15239a703325d97ca4fa655d00f3c05f58bd8be adds back pypy3 on 3.9
# pypy3 will be the only 'pypy3'-prefixed common exe name for all platforms once PyPy 7.3.9 is out
# TODO remove this step once pypy3.9 7.3.9 is released
- name: Fix-up PyPy 3.9 executable
run: |
cd $(dirname $(which python))
if [ ! -f pypy3.exe ]; then
ln -s python.exe pypy3.exe
fi
shell: bash
if: ${{ (matrix.os == 'Windows') && (matrix.python_version == 'pypy-3.9') }}

- name: Run nox
run: |
python -m nox --error-on-missing-interpreters -s tests-${{ matrix.python_version }}
Expand Down