Skip to content

Commit 459164a

Browse files
committed
Fix travis
1 parent 79bac31 commit 459164a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ python:
66
install:
77
- pip install --upgrade setuptools
88
- pip install coveralls --use-mirrors
9+
- pip install pyflakes
10+
- pip install pep8
911
- python setup.py develop
1012

1113
script:
12-
coverage run --source=aiohttp setup.py test
13-
python setup.py check -rms
14+
- pyflakes .
15+
- pep8 aiohttp examples tests
16+
- coverage run --source=aiohttp setup.py test
17+
- python setup.py check -rms
1418
after_success:
1519
coveralls
1620

0 commit comments

Comments
 (0)