From b596824e983d3d9e7db93b4370520abff4008b89 Mon Sep 17 00:00:00 2001 From: Abhas Bhattacharya Date: Tue, 12 Jan 2016 12:51:40 +0530 Subject: [PATCH] Use ps + quoted commands --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a716d36..e1b7c4b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -77,16 +77,16 @@ install: - cinst redis-64 # Install the build dependencies of the project. - - pip install --upgrade -r requirements.txt + - "pip install --upgrade -r requirements.txt" # Install self for tests - - pip install -e . + - "pip install -e ."" build: off test_script: # Run the project tests - - py.test -s + - ps: "py.test -s" # after_test: # # If tests are successful, create binary packages for the project.