Skip to content

Commit cb73ed2

Browse files
authored
Add linting to CI (#3)
* Add linting to CI * Install flake8 and pylint
1 parent 86ae934 commit cb73ed2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ cache:
1818
- $HOME/.cache/pip
1919

2020
install:
21-
- pip install tox coveralls
21+
- pip install tox coveralls flake8 pylint
2222

2323
env:
2424
- TOXENV=py36
2525
- TOXENV=py27
2626

27-
script: tox
27+
script: flake8 adb/ && pylint adb/ && tox
2828

2929
after_success:
3030
- coveralls

0 commit comments

Comments
 (0)