Skip to content

Commit

Permalink
Python version is wrong, correct it
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Dec 14, 2024
1 parent 63acff1 commit 2acb345
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,17 +117,17 @@ jobs:
UV_INDEX_STRATEGY: "first-index"
UV_NO_CACHE: "true"
run: |
python -VV
python3.13t -VV
uv pip install --upgrade --only-binary :all: numpy scipy
- name: Run free-threaded tests with ${{ matrix.plugin }} on ${{ matrix.platform}}
if: ${{ matrix.plugin != 'none' }}
run: |
python -VV
python3.13t -VV
uv pip install -e .
uv pip install pytest ${{ matrix.plugin }}
if [ "${{ matrix.plugin }}" == "pytest-run-parallel" ]; then
PYTHON_GIL="0" pytest --parallel-threads 5
PYTHON_GIL="0" python3.13t -m pytest --parallel-threads 5
elif [ "${{ matrix.plugin }}" == "pytest-freethreaded" ]; then
PYTHON_GIL="0" pytest --threads 5
PYTHON_GIL="0" python3.13t -m pytest --threads 5
fi

0 comments on commit 2acb345

Please sign in to comment.