Fix setting WX_TEST_WEBREQUEST_URL in AppVeyor builds

Don't use quotes around the value, they're not special for cmd.exe
and remain part of the actual variable value.

Co-authored-by: Maarten <MaartenBent@users.noreply.github.com>
This commit is contained in:
VZ
2021-01-25 18:22:40 +01:00
committed by GitHub
parent bde7cfb1a7
commit 75b4f5439a

View File

@@ -4,7 +4,7 @@ echo.
pip install httpbin
start /b python -m httpbin.core
set WX_TEST_WEBREQUEST_URL="http://127.0.0.1:5000"
set WX_TEST_WEBREQUEST_URL=http://127.0.0.1:5000
curl http://127.0.0.1:5000/ip
echo.