diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index c49d89335..281d99681 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -339,6 +339,13 @@ jobs: %PYTHON%\python.exe selftest.py --installed shell: cmd + # failing with PyPy3 + - name: Enable heap verification + if: "!contains(matrix.python-version, 'pypy')" + run: | + c:\"Program Files (x86)"\"Windows Kits"\10\Debuggers\x86\gflags.exe /p /enable %PYTHON%\python.exe + shell: cmd + - name: Test Pillow run: | set PYTHON=%pythonLocation% @@ -346,7 +353,6 @@ jobs: rem Add GhostScript and Raqm binaries (copied to INCLIB) to PATH. path %INCLIB%;%PATH% cd /D %GITHUB_WORKSPACE% - c:\"Program Files (x86)"\"Windows Kits"\10\Debuggers\x86\gflags.exe /p /enable %PYTHON%\python.exe %PYTHON%\python.exe -m pytest -vx --cov PIL --cov-report term --cov-report xml Tests shell: cmd