mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
30 lines
748 B
YAML
30 lines
748 B
YAML
version: '{branch}.{build}'
|
|
environment:
|
|
matrix:
|
|
- TOXENV: lint
|
|
PYTHON: "C:\\Python35-x64"
|
|
- TOXENV: py27
|
|
PYTHON: "C:\\Python27-x64"
|
|
- TOXENV: py35
|
|
PYTHON: "C:\\Python35-x64"
|
|
- TOXENV: py36
|
|
PYTHON: "C:\\Python36-x64"
|
|
matrix:
|
|
allow_failures:
|
|
- TOXENV: py27
|
|
- TOXENV: py35
|
|
- TOXENV: py36
|
|
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
|