From 411822d3b2fae1a1b1a81eeaf54c139bfebcae0f Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sun, 27 Apr 2014 17:45:23 +0200 Subject: [PATCH] Fix appveyor.yml --- appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index c35103ae..5764d2e7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,10 +5,10 @@ environment: - 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') - - ps: $env:PYTHON\python.exe c:\get-pip.py - - ps: $env:PYTHON\Scripts\pip.exe install -e . + - %PYTHON%\python.exe c:\get-pip.py + - %PYTHON%\Scripts\pip.exe install -e . build: off test_script: - - ps: $env:PYTHON\Scripts\pip.exe --version - - ps: $env:PYTHON\Scripts\http.exe --debug - - ps: $env:PYTHON\python.exe setup.py test + - %PYTHON%\Scripts\pip.exe --version + - %PYTHON%\Scripts\http.exe --debug + - %PYTHON%\python.exe setup.py test