flask/.appveyor.yml

26 lines
398 B
YAML
Raw Normal View History

2017-12-16 07:17:13 -08:00
environment:
global:
TOXENV: "py"
matrix:
- PYTHON: "C:\\Python27"
2017-12-17 02:43:06 +09:00
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
init:
- SET PATH=%PYTHON%;%PATH%
- python -c "import sys;sys.stdout.write(sys.version)"
2017-12-16 07:17:13 -08:00
install:
2017-12-17 02:43:06 +09:00
- python -m pip install -U pip setuptools wheel tox
2017-12-16 07:17:13 -08:00
build: false
test_script:
2017-12-17 02:43:06 +09:00
- python -m tox
2017-12-16 07:17:13 -08:00
branches:
only:
- master
- /^.*-maintenance$/