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.
45 lines
725 B
45 lines
725 B
sudo: false |
|
language: python |
|
|
|
matrix: |
|
include: |
|
- python: 3.6 |
|
env: TOXENV=py,codecov |
|
- python: 3.5 |
|
env: TOXENV=py,codecov |
|
- python: 3.4 |
|
env: TOXENV=py,codecov |
|
- python: 2.7 |
|
env: TOXENV=py,codecov |
|
- python: pypy |
|
env: TOXENV=py,codecov |
|
- python: nightly |
|
env: TOXENV=py |
|
- python: 3.6 |
|
env: TOXENV=docs-html |
|
- python: 3.6 |
|
env: TOXENV=py-simplejson,codecov |
|
|
|
install: |
|
- pip install tox |
|
|
|
script: |
|
- tox |
|
|
|
cache: |
|
- pip |
|
|
|
branches: |
|
only: |
|
- master |
|
- /^.*-maintenance$/ |
|
|
|
notifications: |
|
email: false |
|
irc: |
|
channels: |
|
- "chat.freenode.net#pocoo" |
|
on_success: change |
|
on_failure: always |
|
use_notice: true |
|
skip_join: true
|
|
|