From: svlandeg Date: Tue, 21 Oct 2025 08:30:28 +0000 (+0200) Subject: disable GIL to run test suite X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90e8bcc14da0dfb059dec701641f087fad91f702;p=thirdparty%2Ffastapi%2Ffastapi.git disable GIL to run test suite --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed04843f3..44d0df83e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -93,6 +93,10 @@ jobs: - name: Install older AnyIO in Python 3.8 if: matrix.python-version == '3.8' run: uv pip install "anyio[trio]<4.0.0" + - name: Set PYTHON_GIL + if: endsWith(matrix.python-version, 't') + run: | + echo "PYTHON_GIL=0" >> "$GITHUB_ENV" - run: mkdir coverage - name: Test run: bash scripts/test.sh