mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
c0e3453a62
Refs #635
23 lines
559 B
YAML
23 lines
559 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "pypy"
|
|
- "pypy3"
|
|
branches:
|
|
only:
|
|
- master
|
|
install:
|
|
- pip install coveralls
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements-dev.txt
|
|
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy'* ]]; then pip install ujson; fi
|
|
script:
|
|
- nosetests -v --with-flaky --no-flaky-report --with-coverage --cover-package=telegram/ tests
|
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then pre-commit run --all-files; fi
|
|
- python ./setup.py bdist_dumb
|
|
after_success:
|
|
coveralls
|