gunicorn/appveyor.yml
Dustin Ingram 80dfe06943 Update CI configs for 3.5, 3.6, 3.7 and 3.8 (#1888)
* Update .travis.yml

Make 3.7 required to pass, and test against 3.8-dev

* Update appveyor.yml as well
2018-10-09 06:07:56 +02:00

25 lines
665 B
YAML

version: '{branch}.{build}'
environment:
matrix:
- TOXENV: lint
PYTHON: "C:\\Python35-x64"
- TOXENV: py35
PYTHON: "C:\\Python35-x64"
- TOXENV: py36
PYTHON: "C:\\Python36-x64"
- TOXENV: py37
PYTHON: "C:\\Python37-x64"
init: SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
install:
- pip install tox
build: off
test_script: tox
cache:
# Not including the .tox directory since it takes longer to download/extract
# the cache archive than for tox to clean install from the pip cache.
- '%LOCALAPPDATA%\pip\Cache -> tox.ini'
notifications:
- provider: Email
on_build_success: false
on_build_status_changed: false