2013-02-15 04:06:04 +04:00
|
|
|
# https://travis-ci.org/soimort/you-get
|
|
|
|
language: python
|
|
|
|
python:
|
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"
|
2020-03-19 13:57:36 +03:00
|
|
|
- "3.7"
|
|
|
|
- "3.8"
|
2020-03-19 14:04:32 +03:00
|
|
|
#- "nightly" (flake8 not working in python 3.9 yet, module 'ast' has no attribute 'AugLoad')
|
2014-09-21 00:40:08 +04:00
|
|
|
- "pypy3"
|
2018-10-26 23:48:04 +03:00
|
|
|
before_install:
|
2019-05-09 02:35:12 +03:00
|
|
|
- pip install flake8
|
2018-05-20 14:47:28 +03:00
|
|
|
before_script:
|
2019-05-09 02:35:12 +03:00
|
|
|
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
|
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
|