1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 00:55:06 +03:00

Enable django_jenkins flake8 reporting

Also exclude awx/ui from pep8 runs.
This commit is contained in:
James Laska 2015-01-28 14:00:57 -05:00
parent 18e7541f3b
commit ea0b39859b
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ if 'django_jenkins' in INSTALLED_APPS:
'django_jenkins.tasks.run_pylint',
'django_jenkins.tasks.run_pep8',
'django_jenkins.tasks.run_pyflakes',
'django_jenkins.tasks.run_flake8',
'django_jenkins.tasks.run_jshint',
'django_jenkins.tasks.run_csslint',
)

View File

@ -14,4 +14,4 @@
# W391 - Blank line at end of file
# W293 - Blank line contains whitespace
ignore=E201,E203,E221,E225,E231,E241,E251,E261,E302,E303,E501,W291,W391,W293
exclude=awx/lib/site-packages
exclude=awx/lib/site-packages,awx/ui