From 1664b0ed6d5a074bcc0e3cc4e120aad81713f9b2 Mon Sep 17 00:00:00 2001 From: Mark McClain Date: Fri, 18 Jan 2013 15:55:26 -0500 Subject: [PATCH] add pep8 support to Travis build tests --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a6b1bc9..e0fd13f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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