diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-10 12:55:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 12:55:46 -0500 |
commit | 8d9f97bdcaacf8465e8fe61f64e5d22753cc415c (patch) | |
tree | 4e007c6e596ad33c14f9986752c7b4c2378e9fb9 | |
parent | bf9b87605a19fc2bb1a01435b3f11f66b18fed93 (diff) | |
parent | 5673273aa9959d686fe46e2112c162d84294ac8e (diff) | |
download | cmd2-git-8d9f97bdcaacf8465e8fe61f64e5d22753cc415c.tar.gz |
Merge pull request #884 from python-cmd2/appveyor_fix
Appveyor fix
-rw-r--r-- | .appveyor.yml | 10 |
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%" |