summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.appveyor.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index b335fe55..3e147335 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -27,9 +27,13 @@ install:
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- # Upgrade to the latest version of pip to avoid it displaying warnings
- # about it being out of date.
- - "python -m pip install --upgrade pip wheel setuptools tox"
+ # Update conda stuff to make sure pip, setuptools, wheel etc are up to date
+ - "conda update --all -y"
+
+ # Install tox
+ - "python -m pip install --upgrade tox"
+
+
test_script:
- "tox -e %TOXENV%"