summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-05-29 15:56:47 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-05-29 15:56:47 -0400
commitc57ff835530d72751590518473f4e5dd9ab7c880 (patch)
tree40e0ed2211997d95fbae6c8cb2cc68de040014a4
parent947071b4a9fc3ae90039e3e7b2a1e2ca483f7f50 (diff)
downloadpython-coveragepy-git-c57ff835530d72751590518473f4e5dd9ab7c880.tar.gz
Not sure why pip is failing on appveyor. Try this.
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6ff592af..fe99f630 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -99,9 +99,9 @@ install:
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- - "pip install --disable-pip-version-check --user --upgrade pip"
+ - "python -m pip install --disable-pip-version-check --user --upgrade pip"
# And upgrade virtualenv to get the latest pip inside .tox virtualenvs.
- - "pip install --disable-pip-version-check --user --upgrade virtualenv"
+ - "python -m pip install --disable-pip-version-check --user --upgrade virtualenv"
# Install requirements.
- "%CMD_IN_ENV% pip install -r requirements/ci.pip"