you-get/.travis.yml

23 lines
681 B
YAML
Raw Normal View History

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"
- "3.5"
- "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
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