mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
Adding OSX and lint/pep8 tests to Travis
This commit is contained in:
parent
968b19e8b7
commit
596fc2aeda
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
|||
language: python
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
python:
|
||||
- "2.6"
|
||||
- "2.7"
|
||||
|
@ -7,9 +10,11 @@ python:
|
|||
- "pypy"
|
||||
- "pypy3"
|
||||
install:
|
||||
- pip install coveralls
|
||||
- pip install pylint flake8 coveralls
|
||||
- pip install -r requirements.txt
|
||||
script:
|
||||
nosetests --with-coverage --cover-package telegram/
|
||||
pylint -E telegram
|
||||
flake8 telegram
|
||||
after_success:
|
||||
coveralls
|
||||
|
|
Loading…
Reference in a new issue