Modify travis ci config

Add installation of pep8 and nose
This commit is contained in:
wangwei 2015-12-22 19:13:13 +08:00
parent 7d45944bbd
commit 0b3b8a94e2

View File

@ -3,7 +3,10 @@ python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
install:
- "pip install -r requirements.txt"
- "pip install pep8 --use-mirrors"
- "pip install nose --use-mirrors"
# command to run tests
before_script:
- "pep8 stetho"