From 596fc2aeda7edc109648dac4ba14ae9095289c69 Mon Sep 17 00:00:00 2001 From: Leandro Toledo Date: Wed, 11 Nov 2015 12:27:07 -0200 Subject: [PATCH] Adding OSX and lint/pep8 tests to Travis --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bd742f71c..51c0519a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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