python-telegram-bot/.travis.yml

19 lines
490 B
YAML
Raw Normal View History

2015-07-07 16:50:36 -03:00
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
2015-08-28 13:09:47 -03:00
- "pypy"
- "pypy3"
2015-08-11 14:40:20 -03:00
install:
- pip install coveralls
2015-11-10 12:04:21 -02:00
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
2015-08-11 14:40:20 -03:00
script:
- nosetests -v --with-flaky --no-flaky-report --with-coverage --cover-package=telegram/
- 'if [ $TRAVIS_PYTHON_VERSION != 2.6 ] && [ $TRAVIS_PYTHON_VERSION != 3.3 ] && [ $TRAVIS_PYTHON_VERSION != pypy3 ]; then pre-commit run --all-files; fi'
after_success:
2015-11-11 12:07:43 -02:00
coveralls