2013-02-15 01:06:04 +01:00
|
|
|
# https://travis-ci.org/soimort/you-get
|
|
|
|
language: python
|
|
|
|
python:
|
2014-05-20 03:35:29 +02:00
|
|
|
- "3.4"
|
2015-09-21 00:50:41 +02:00
|
|
|
- "3.5"
|
2017-02-01 23:51:06 +01:00
|
|
|
- "3.6"
|
2014-09-20 22:40:08 +02:00
|
|
|
- "pypy3"
|
2019-04-17 09:54:13 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- python: "3.7"
|
|
|
|
dist: xenial
|
|
|
|
- python: "3.8-dev"
|
2019-05-09 01:35:12 +02:00
|
|
|
dist: xenial
|
2019-04-17 09:54:13 +02:00
|
|
|
- python: "nightly"
|
2019-05-09 01:35:12 +02:00
|
|
|
dist: xenial
|
2018-10-26 22:48:04 +02:00
|
|
|
before_install:
|
2019-05-09 01:35:12 +02:00
|
|
|
- pip install flake8
|
2018-05-20 13:47:28 +02:00
|
|
|
before_script:
|
2019-05-09 01:35:12 +02:00
|
|
|
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
|
2013-02-15 01:06:04 +01:00
|
|
|
script: make test
|
2015-10-17 23:15:18 +02: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
|