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 4bd5909 commit 8bd96b4Copy full SHA for 8bd96b4
.github/workflows/tests.yml
@@ -86,5 +86,11 @@ jobs:
86
- name: Install dependencies
87
run: python -m pip install tox
88
89
+ # TODO: remove when the _fsevents C extension declares support for
90
+ # running without the GIL
91
+ - name: Force-disable the GIL on Mac
92
+ if: ${{ endsWith(matrix.python, 't') && matrix.os.matrix == 'macos' }}
93
+ run: echo "PYTHON_GIL=0" >> $GITHUB_ENV
94
+
95
- name: Run tests
96
run: python -m tox -q -e py
0 commit comments