Skip to content

Commit

Permalink
Attempt to add Python 3.13 no GIL tests under GitHub actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Oct 7, 2024
1 parent 1594889 commit 23d3111
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 23d3111

Please sign in to comment.