diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-05-13 23:44:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-13 23:44:24 -0400 |
| commit | cbf0313306c99c02f3c503f60d70df4bda2cce64 (patch) | |
| tree | 8f47cfe184a89d30c52a066eecd5b144f8d54f12 | |
| parent | 04024694d3405f83c3f853b8129896a475bf79b3 (diff) | |
| parent | 841d908626b9d3c4b3cda3a7dbf54a6eeae5c96a (diff) | |
| download | cmd2-git-cbf0313306c99c02f3c503f60d70df4bda2cce64.tar.gz | |
Merge pull request #679 from python-cmd2/appveyor_fix
Appveyor fix
| -rw-r--r-- | .appveyor.yml | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index ccda7e25..69ab4b6a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,27 @@ -install: - - python -m pip install tox - build: off +environment: + PYTHONUNBUFFERED: 1 + MINICONDA: C:\\Miniconda3-x64 + matrix: +# Disable Python 3.5 testing on AppVeyor for now until we fix issue with mock module install for python < 3.6 +# - PYTHON: "C:\\Python35" +# TOX_ENV: "py35" + + - PYTHON: "C:\\Python36" + TOX_ENV: "py36" + + - PYTHON: "C:\\Python37" + TOX_ENV: "py37" + +init: +- "%PYTHON%/python -V" +- mkdir C:\Users\appveyor\.conda +- call %MINICONDA%\Scripts\activate.bat + +install: +- "%PYTHON%/Scripts/pip install -U --user pip" +- "%PYTHON%/Scripts/pip install -U --user setuptools tox wheel" + test_script: - - python -m tox -e py35,py36,py37 +- "%PYTHON%/python -m tox -e %TOX_ENV%" |
