We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6e6d6 commit 4c1ae91Copy full SHA for 4c1ae91
.github/workflows/run_tests.yaml
@@ -37,7 +37,10 @@ jobs:
37
python --version
38
uv pip install . -r ${{ inputs.requirements-file }} -v --reinstall --system
39
python -c "import parsnip; print('parsnip', parsnip.__version__)"
40
- python -c "import sys; print('GIL: ', sys._is_gil_enabled)"
+
41
+ if [ "${{ inputs.freethreaded }}" = "true" ]; then
42
+ python -c "import sys; print('GIL: ', sys._is_gil_enabled)"
43
+ fi
44
45
- name: Test with pytest
46
run: python -m ${{ runner.os != 'Windows' && 'pytest' || 'pytest tests' }} -v -n auto
0 commit comments