File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -9,17 +9,16 @@ if ("$venv" -like "*\cibw-run-*\pp*-win_amd64\*") {
9
9
C:\vc_redist.x64.exe / install / quiet / norestart | Out-Null
10
10
}
11
11
$env: path += " ;$pillow \winbuild\build\bin\"
12
- & " $venv \Scripts\activate.ps1"
13
12
& reg add " HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\python.exe" / v " GlobalFlag" / t REG_SZ / d " 0x02000000" / f
14
13
if (" $venv " -like " *\cibw-run-*-win_amd64\*" ) {
15
- & python - m pip install numpy
14
+ & $venv \Scripts\ python.exe - m pip install numpy
16
15
}
17
16
cd $pillow
18
- & python - VV
17
+ & $venv \Scripts\ python.exe - VV
19
18
if (! $? ) { exit $LASTEXITCODE }
20
- & python selftest.py
19
+ & $venv \Scripts\ python.exe selftest.py
21
20
if (! $? ) { exit $LASTEXITCODE }
22
- & python - m pytest - vx Tests\check_wheel.py
21
+ & $venv \Scripts\ python.exe - m pytest - vx Tests\check_wheel.py
23
22
if (! $? ) { exit $LASTEXITCODE }
24
- & python - m pytest - vx Tests
23
+ & $venv \Scripts\ python.exe - m pytest - vx Tests
25
24
if (! $? ) { exit $LASTEXITCODE }
You can’t perform that action at this time.
0 commit comments