From 40fdbc01e3a23f8fe4ad4ada3a9438b56121501c Mon Sep 17 00:00:00 2001 From: James Laska Date: Wed, 18 Feb 2015 13:00:49 -0500 Subject: [PATCH] Pyflakes and pep8 are replaced by flake8 --- awx/settings/development.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/awx/settings/development.py b/awx/settings/development.py index d305adb719..fa9e067744 100644 --- a/awx/settings/development.py +++ b/awx/settings/development.py @@ -37,9 +37,10 @@ except ImportError: if 'django_jenkins' in INSTALLED_APPS: JENKINS_TASKS = ( 'django_jenkins.tasks.run_pylint', - 'django_jenkins.tasks.run_pep8', - 'django_jenkins.tasks.run_pyflakes', 'django_jenkins.tasks.run_flake8', + # The following are not needed when including run_flake8 + # 'django_jenkins.tasks.run_pep8', + # 'django_jenkins.tasks.run_pyflakes', 'django_jenkins.tasks.run_jshint', 'django_jenkins.tasks.run_csslint', )