From 18f3700b77ff45af7f1cd44f78e1bbc5df179e19 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sun, 27 Apr 2014 17:54:30 +0200 Subject: [PATCH] Fix appveyor.yml V. --- appveyor.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6e081249..45845026 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,14 +1,13 @@ -# https://ci.appveyor.com/project/jkbr/httpie +build: false environment: matrix: - - PYTHON: C:\Python27 - - PYTHON: C:\Python33 + - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python33" install: - - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\get-pip.py') - - cmd: %PYTHON%\python.exe c:\get-pip.py - - cmd: %PYTHON%\Scripts\pip.exe install -e . -build: off + - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:\\get-pip.py') + - "%PYTHON%\\python.exe c:\\get-pip.py" + - "%PYTHON%\\Scripts\\pip.exe install -e ." test_script: - - %PYTHON%\Scripts\pip.exe --version - - %PYTHON%\Scripts\http.exe --debug - - %PYTHON%\python.exe setup.py test + - "%PYTHON%\\Scripts\\pip.exe --version" + - "%PYTHON%\\Scripts\\http.exe --debug" + - "%PYTHON%\\python.exe setup.py test"