From f08dca0af6d175cb3de4f8996ab6174e4cbf02a7 Mon Sep 17 00:00:00 2001 From: Leandro Toledo Date: Wed, 11 Nov 2015 12:39:09 -0200 Subject: [PATCH] Fixes pylint for Py2.6 --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1491f5970..ef16b1137 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,4 @@ language: python -os: - - linux - - osx python: - "2.6" - "2.7" @@ -14,7 +11,7 @@ install: - pip install -r requirements.txt script: - nosetests --with-coverage --cover-package telegram/ - - pylint -E telegram - flake8 telegram + - 'if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pylint -E telegram; fi' after_success: coveralls