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"
|
2020-03-19 11:57:36 +01:00
|
|
|
- "3.7"
|
|
|
|
- "3.8"
|
2020-03-19 12:04:32 +01:00
|
|
|
#- "nightly" (flake8 not working in python 3.9 yet, module 'ast' has no attribute 'AugLoad')
|
2014-09-20 22:40:08 +02:00
|
|
|
- "pypy3"
|
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
|