From 55dd3d2cf53b3ec5b7d57b7461bdbcdf073a0875 Mon Sep 17 00:00:00 2001 From: Paul Ganssle Date: Thu, 3 Nov 2016 18:23:49 -0400 Subject: Tweak CI due to version inconsistencies and other issues. --- appveyor.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index e52e64f..68f32c5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,12 +14,15 @@ install: - set path=c:\Program Files\PostgreSQL\9.3\bin\;%PATH% - set path=%PATH%;%PYTHON%;%PYTHON%/Scripts + # If this isn't done, I guess Appveyor will install to the Python2.7 version + - set pip_cmd=%PYTHON%/python.exe -m pip + # Download scripts and dependencies - ps: Start-FileDownload 'https://bootstrap.pypa.io/get-pip.py' - - "python get-pip.py" - - "pip install six" - - "pip install coverage" - - "pip install codecov" + - "%PYTHON%/python.exe get-pip.py" + - "%pip_cmd% install six" + - "%pip_cmd% install coverage" + - "%pip_cmd% install codecov" # This frequently fails with network errors, so we'll retry it up to 5 times # with a 1 minute rate limit. -- cgit v1.2.3