X Tutup
Skip to content

Commit f08dca0

Browse files
committed
Fixes pylint for Py2.6
1 parent 8c0bcbf commit f08dca0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
language: python
2-
os:
3-
- linux
4-
- osx
52
python:
63
- "2.6"
74
- "2.7"
@@ -14,7 +11,7 @@ install:
1411
- pip install -r requirements.txt
1512
script:
1613
- nosetests --with-coverage --cover-package telegram/
17-
- pylint -E telegram
1814
- flake8 telegram
15+
- 'if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pylint -E telegram; fi'
1916
after_success:
2017
coveralls

0 commit comments

Comments
 (0)
X Tutup