AppVeyor: pin httpbin deps as is done on Unix builds

This commit is contained in:
Scott Talbert 2023-03-28 17:48:32 -04:00
parent 0d1ef21463
commit 58c8511d7f

View file

@ -82,7 +82,7 @@ before_test:
- ps: |
Write-Output "Getting and launching httpbin."
$env:PATH = "C:\Python38;C:\Python38\Scripts;" + $env:PATH
pip.exe --disable-pip-version-check install httpbin
pip.exe --disable-pip-version-check install Flask==2.0.3 Werkzeug==2.0.3 httpbin
Start-Job -Name wx_httpbin { python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log }
Start-Sleep -Seconds 5
curl.exe --silent --show-error http://127.0.0.1:5000/ip > $null