you-get/.travis.yml

28 lines
709 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"
2014-09-21 00:40:08 +04:00
- "pypy3"
matrix:
include:
- python: "3.7"
dist: xenial
- python: "3.8-dev"
2019-05-09 02:35:12 +03:00
dist: xenial
- python: "nightly"
2019-05-09 02:35:12 +03:00
dist: xenial
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