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', )