add pep8 support to Travis build tests

This commit is contained in:
Mark McClain
2013-01-18 15:55:26 -05:00
parent 4fb4f22057
commit 1664b0ed6d

View File

@@ -8,5 +8,10 @@ branches:
only:
- master
- next
install: pip install gunicorn && pip install -r requirements.txt --use-mirrors
install:
- pip install gunicorn
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
before_script:
- pep8 --repeat --show-source --ignore=E125 --statistics --exclude=dist,doc,*egg .
script: python setup.py test --functional