Use Python 3.8 for httpbin in AppVeyor CI builds
Installing httpbin using PYthon 3.5 fails with strange build errors, try using 3.8 instead.
This commit is contained in:
parent
b01faaafa5
commit
0af3c92890
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ build_script: c:\projects\wxwidgets\build\tools\appveyor.bat
|
|||
before_test:
|
||||
- ps: |
|
||||
Write-Output "Getting and launching httpbin."
|
||||
$env:PATH = "C:\Python35;C:\Python35\Scripts;" + $env:PATH
|
||||
$env:PATH = "C:\Python38;C:\Python38\Scripts;" + $env:PATH
|
||||
pip.exe --disable-pip-version-check install httpbin
|
||||
Start-Job -Name wx_httpbin { python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log }
|
||||
Start-Sleep -Seconds 5
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue