mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 23:27:49 +01:00
18 lines
476 B
YAML
18 lines
476 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
- "pypy3"
|
|
install:
|
|
- pip install pylint flake8 coveralls
|
|
- pip install -r requirements.txt
|
|
- 'if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi'
|
|
script:
|
|
- nosetests --with-coverage --cover-package telegram/
|
|
- flake8 telegram
|
|
- 'if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pylint -E telegram --disable=no-name-in-module,import-error; fi'
|
|
after_success:
|
|
coveralls
|