mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
398 B
25 lines
398 B
environment: |
|
global: |
|
TOXENV: "py" |
|
|
|
matrix: |
|
- PYTHON: "C:\\Python27" |
|
- PYTHON: "C:\\Python35" |
|
- PYTHON: "C:\\Python36" |
|
|
|
init: |
|
- SET PATH=%PYTHON%;%PATH% |
|
- python -c "import sys;sys.stdout.write(sys.version)" |
|
|
|
install: |
|
- python -m pip install -U pip setuptools wheel tox |
|
|
|
build: false |
|
|
|
test_script: |
|
- python -m tox |
|
|
|
branches: |
|
only: |
|
- master |
|
- /^.*-maintenance$/
|
|
|