From 3b4a518977b5f5767ccbad0d25a5c6ab0325bf38 Mon Sep 17 00:00:00 2001 From: Abhas Bhattacharya Date: Tue, 12 Jan 2016 12:54:00 +0530 Subject: [PATCH] Fix double quote in yml + prev fix not needed --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d143bac..7468d77 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -79,14 +79,14 @@ install: # Install the build dependencies of the project. - "pip install --upgrade -r requirements.txt" # Install self for tests - - "pip install -e ."" + - "pip install -e ." build: off test_script: # Run the project tests - - ps: "py.test" + - ps: "py.test -v" # after_test: # # If tests are successful, create binary packages for the project.