We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968b19e commit 596fc2aCopy full SHA for 596fc2a
.travis.yml
@@ -1,4 +1,7 @@
1
language: python
2
+os:
3
+ - linux
4
+ - osx
5
python:
6
- "2.6"
7
- "2.7"
@@ -7,9 +10,11 @@ python:
10
- "pypy"
8
11
- "pypy3"
9
12
install:
- - pip install coveralls
13
+ - pip install pylint flake8 coveralls
14
- pip install -r requirements.txt
15
script:
16
nosetests --with-coverage --cover-package telegram/
17
+ pylint -E telegram
18
+ flake8 telegram
19
after_success:
20
coveralls
0 commit comments