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 b3599de commit 57f106cCopy full SHA for 57f106c
.github/workflows/test-windows.yml
@@ -137,10 +137,11 @@ jobs:
137
& $env:pythonLocation\python.exe selftest.py --installed
138
shell: pwsh
139
140
- # failing with PyPy3
+ # skip PyPy for speed
141
- name: Enable heap verification
142
if: "!contains(matrix.python-version, 'pypy')"
143
- run: "& 'C:\\Program Files (x86)\\Windows Kits\\10\\Debuggers\\x86\\gflags.exe' /p /enable $env:pythonLocation\\python.exe"
+ run: |
144
+ & reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\python.exe" /v "GlobalFlag" /t REG_SZ /d "0x02000000" /f
145
146
- name: Test Pillow
147
run: |
0 commit comments