2013-02-15 04:06:04 +04:00
|
|
|
# https://travis-ci.org/soimort/you-get
|
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "3.2"
|
|
|
|
- "3.3"
|
2014-05-20 05:35:29 +04:00
|
|
|
- "3.4"
|
2015-09-21 01:50:41 +03:00
|
|
|
- "3.5"
|
2017-02-02 01:51:06 +03:00
|
|
|
- "3.6"
|
2014-09-21 00:40:08 +04:00
|
|
|
- "pypy3"
|
2019-04-17 10:54:13 +03:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: "3.7"
|
|
|
|
dist: xenial
|
|
|
|
- python: "3.8-dev"
|
|
|
|
dist: xenial
|
|
|
|
- python: "nightly"
|
|
|
|
dist: xenial
|
2018-10-26 23:48:04 +03:00
|
|
|
before_install:
|
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION != '3.2'* && $TRAVIS_PYTHON_VERSION != '3.3'* ]]; then pip install flake8; fi
|
2018-05-20 14:47:28 +03:00
|
|
|
before_script:
|
2019-04-17 10:54:13 +03:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION != '3.2'* && $TRAVIS_PYTHON_VERSION != '3.3'* ]]; then flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics; fi
|
2013-02-15 04:06:04 +04:00
|
|
|
script: make test
|
2015-10-18 00:15:18 +03:00
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://webhooks.gitter.im/e/43cd57826e88ed8f2152
|
|
|
|
on_success: change # options: [always|never|change] default: always
|
|
|
|
on_failure: always # options: [always|never|change] default: always
|
|
|
|
on_start: never # options: [always|never|change] default: always
|