From a0dd4786377a6c4fddeae8d9c9621faba8451c3d Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Mon, 14 Sep 2015 10:59:10 -0300 Subject: [PATCH] Use pip and tox from py27 in appveyor --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cd9475046..636190a04 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -73,10 +73,10 @@ install: # compiled extensions and are not provided as pre-built wheel packages, # pip will build them from source using the MSVC compiler matching the # target Python version and architecture - - "%CMD_IN_ENV% pip install tox" + - C:\Python27\python -m pip install tox build: false # Not a C# project, build stuff at the test step instead. test_script: # Build the compiled extension and run the project tests - - "%CMD_IN_ENV% tox -e %TESTENV%" + - C:\Python27\python -m tox -e %TESTENV%