aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2016-11-03 18:23:49 -0400
committerPaul Ganssle <paul@ganssle.io>2016-11-03 18:33:55 -0400
commit55dd3d2cf53b3ec5b7d57b7461bdbcdf073a0875 (patch)
treeb75d1e427b42222d2702a647ce5125ec1cda379f /appveyor.yml
parent1ad8829040c2ee63eab37a914d40a2f09cd6b563 (diff)
downloaddateutil-55dd3d2cf53b3ec5b7d57b7461bdbcdf073a0875.tar.gz
Tweak CI due to version inconsistencies and other issues.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 7 insertions, 4 deletions
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.