From 8fb03d2772ed65584e50e3bef36c5b59017bfebf Mon Sep 17 00:00:00 2001 From: andy Date: Sat, 27 Apr 2013 12:44:29 -0700 Subject: [PATCH] pep8 testing on travis --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 728a6e60a2..fc76e6da9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,5 +5,9 @@ python: - "2.7" - "2.6" - "2.5" +install: + - pip install pep8 --use-mirrors + - pip install -e . --use-mirrors +before_script: + - "pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc,build,*.egg ." script: python setup.py test -