-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to add Python 3.13 no GIL tests under GitHub actions.
- Loading branch information
1 parent
1594889
commit 23d3111
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,32 @@ jobs: | |
name: coverage | ||
path: .coverage.* | ||
|
||
test_linux_no_gil: | ||
name: Test (NO GIL) (${{ matrix.os }}, ${{ matrix.python-version }}) | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.13-dev] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: deadsnakes/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
nogil: true | ||
- name: Update pip | ||
run: python -m pip install -U pip wheel setuptools | ||
- name: Install tox | ||
run: python -m pip install "tox<4.0.0" "tox-gh-actions<3.0.0" | ||
- name: Test with tox | ||
run: python -m tox | ||
- name: Store partial coverage reports | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: coverage | ||
path: .coverage.* | ||
|
||
# test_aarch64_linux: | ||
# name: Test (${{ matrix.python.os }}, ${{ matrix.python.python-version }}, aarch64) | ||
# runs-on: ${{ matrix.python.os }} | ||
|
@@ -178,6 +204,7 @@ jobs: | |
name: Build wheels (3.8+) on ${{ matrix.os }} for ${{ matrix.arch }} | ||
needs: | ||
- test_linux | ||
- test_linux_no_gil | ||
#- test_aarch64_linux | ||
- test_macos | ||
- test_windows | ||
|
@@ -216,6 +243,7 @@ jobs: | |
# if: ${{ false }} # disable for now | ||
# needs: | ||
# - test_linux | ||
# - test_linux_no_gil | ||
# - test_macos | ||
# - test_windows | ||
# runs-on: ubuntu-20.04 | ||
|