From 94162303d66fa439df3b4c2a49007f22a32e2d26 Mon Sep 17 00:00:00 2001 From: Alex Barcelo Date: Mon, 24 Oct 2016 10:06:36 +0200 Subject: [PATCH] adding pep8 test for Travis --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 60080bd6..6b675f55 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,11 +20,15 @@ install: - pip install argparse - pip install coverage - pip install codecov + - pip install pep8 - pip install -q Django==$DJANGO - pip install -q -r requirements.txt +before_script: + - "pep8 --exclude=migrations,south_migrations --ignore=E501 helpdesk" + script: - coverage run --source='.' quicktest.py helpdesk after_success: - - codecov \ No newline at end of file + - codecov