Skip to content

Commit

Permalink
Disable testing Python 32 bit wheels on Windows
Browse files Browse the repository at this point in the history
Somehow the tester (or the Python interpreter?) aborts when running
multiple tests, while running each test on its own is fine. Windows 10’s
EOL is scheduled for October 2025, and Windows 11 is not available for
x86 (32 bit) anyway.
  • Loading branch information
nhusung committed Feb 19, 2025
1 parent d0f56e5 commit 38291b1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,11 @@ jobs:
& ".venv-$py\Scripts\pytest.exe"
}
& "$(get-item .python\pythonx86*\tools\python.exe)" -m venv .venv-cp-i686
.venv-cp-i686\Scripts\pip.exe install "$(get-item dist\oxidd-*-cp*-*win32.whl)[test]"
.venv-cp-i686\Scripts\pytest.exe
# Somehow the tester (or the Python interpreter?) aborts when running
# multiple tests, while running each test on its own is fine.
# & "$(get-item .python\pythonx86*\tools\python.exe)" -m venv .venv-cp-i686
# .venv-cp-i686\Scripts\pip.exe install "$(get-item dist\oxidd-*-cp*-*win32.whl)[test]"
# .venv-cp-i686\Scripts\pytest.exe
- uses: actions/upload-artifact@v4
with:
name: python-wheels-win
Expand Down

0 comments on commit 38291b1

Please sign in to comment.