X Tutup
Skip to content

Commit 596fc2a

Browse files
committed
Adding OSX and lint/pep8 tests to Travis
1 parent 968b19e commit 596fc2a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
language: python
2+
os:
3+
- linux
4+
- osx
25
python:
36
- "2.6"
47
- "2.7"
@@ -7,9 +10,11 @@ python:
710
- "pypy"
811
- "pypy3"
912
install:
10-
- pip install coveralls
13+
- pip install pylint flake8 coveralls
1114
- pip install -r requirements.txt
1215
script:
1316
nosetests --with-coverage --cover-package telegram/
17+
pylint -E telegram
18+
flake8 telegram
1419
after_success:
1520
coveralls

0 commit comments

Comments
 (0)
X Tutup