2015-07-07 16:50:36 -03:00
|
|
|
language: python
|
|
|
|
python:
|
2015-07-15 10:05:31 -03:00
|
|
|
- "2.6"
|
|
|
|
- "2.7"
|
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
2015-08-28 13:09:47 -03:00
|
|
|
- "pypy"
|
|
|
|
- "pypy3"
|
2015-08-11 14:40:20 -03:00
|
|
|
install:
|
2016-01-06 12:12:01 -02:00
|
|
|
- pip install coveralls
|
2015-11-10 12:04:21 -02:00
|
|
|
- pip install -r requirements.txt
|
2016-01-06 12:12:01 -02:00
|
|
|
- pip install -r requirements-dev.txt
|
2015-08-11 14:40:20 -03:00
|
|
|
script:
|
2015-11-11 12:28:34 -02:00
|
|
|
- nosetests --with-coverage --cover-package telegram/
|
|
|
|
- flake8 telegram
|
2015-12-11 18:52:23 +01:00
|
|
|
- 'if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pylint -E telegram --disable=no-name-in-module,import-error; fi'
|
2015-08-11 14:13:02 -03:00
|
|
|
after_success:
|
2015-11-11 12:07:43 -02:00
|
|
|
coveralls
|