Add Python scripts directory to PATH to avoid pip warnings
They're really too annoying.
This commit is contained in:
parent
cf65f47add
commit
99d088eec3
@ -74,8 +74,9 @@ build_script: c:\projects\wxwidgets\build\tools\appveyor.bat
|
|||||||
before_test:
|
before_test:
|
||||||
- ps: |
|
- ps: |
|
||||||
Write-Output "Getting and launching httpbin."
|
Write-Output "Getting and launching httpbin."
|
||||||
C:\Python35\Scripts\pip.exe --disable-pip-version-check install httpbin
|
$env:PATH = "C:\Python35;C:\Python35\Scripts;" + $env:PATH
|
||||||
Start-Job -Name wx_httpbin { C:\Python35\python.exe -m httpbin.core 2>&1 > c:\projects\wxwidgets\httpbin.log }
|
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
|
Start-Sleep -Seconds 5
|
||||||
if (curl -s http://127.0.0.1:5000/ip > $null) {
|
if (curl -s http://127.0.0.1:5000/ip > $null) {
|
||||||
$env:WX_TEST_WEBREQUEST_URL="http://127.0.0.1:5000"
|
$env:WX_TEST_WEBREQUEST_URL="http://127.0.0.1:5000"
|
||||||
|
Loading…
Reference in New Issue
Block a user