From bc40d76cf092cf4a88ed1e3ce8ba4783375b5db7 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Sat, 7 Apr 2018 21:26:54 +0800 Subject: [PATCH] Try to fix the Appveyor run script --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 59de24ca..65764bfd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,7 @@ init: environment: - PYPI_VENDOR_DIR: ".\\tests\\pypi\\" + PYPI_VENDOR_DIR: '.\tests\pypi\' GIT_ASK_YESNO: "false" SHELL: "windows" PYTHON_ARCH: "64" @@ -85,5 +85,5 @@ cache: - "%LocalAppData%\\pip\\cache" test_script: - - "if \"%RUN_INTEGRATION_TESTS%\" == \"True\" (rmdir /s /q %LocalAppData%\\pip\\cache)" - - set PYPI_VENDOR_DIR=".\tests\pypi\" && %PYTHON%\\python.exe -m pipenv run pytest -v -n auto --ignore=pipenv\\vendor -m %TEST_SUITE% tests + - 'if "%RUN_INTEGRATION_TESTS%" == "True" (rmdir /s /q %LocalAppData%\pip\cache)' + - '%PYTHON%\python.exe -m pipenv run pytest -v -n auto -m %TEST_SUITE% tests'