Suppress pip warning about installing scripts not in PATH
We don't care about it here, as we use full paths anyhow.
This commit is contained in:
parent
c625d2c001
commit
2eaa7a21b0
@ -74,7 +74,7 @@ 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
|
C:\Python35\Scripts\pip.exe --disable-pip-version-check --no-warn-script-location install httpbin
|
||||||
Start-Job -Name wx_httpbin { C:\Python35\python.exe -m httpbin.core > c:\projects\wxwidgets\httpbin.log }
|
Start-Job -Name wx_httpbin { C:\Python35\python.exe -m httpbin.core > c:\projects\wxwidgets\httpbin.log }
|
||||||
curl http://127.0.0.1:5000/ip
|
curl http://127.0.0.1:5000/ip
|
||||||
$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