you-get/.travis.yml

23 lines
669 B
YAML
Raw Normal View History

2013-02-15 04:06:04 +04:00
# https://travis-ci.org/soimort/you-get
language: python
python:
- "3.2"
- "3.3"
2014-05-20 05:35:29 +04:00
- "3.4"
- "3.5"
- "3.6"
- "nightly"
2014-09-21 00:40:08 +04:00
- "pypy3"
before_install: pip install flake8
2018-05-20 14:47:28 +03:00
before_script:
- if [[ $TRAVIS_PYTHON_VERSION != '3.2'* ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi
2013-02-15 04:06:04 +04:00
script: make test
sudo: false
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