Add pep8 and pyflakes Makefile targets

This commit is contained in:
James Laska
2014-04-23 13:55:09 -04:00
parent 02c4a39865
commit b4d06796a3

View File

@@ -141,6 +141,12 @@ taskmanager:
socketservice:
$(PYTHON) manage.py run_socketio_service
pep8:
pep8 -r --ignore=E501,E221,W291,W391,E302,E251,E203,W293,E231,E303,E201,E225,E261,E241 awx/
pyflakes:
pyflakes awx/
# Run all API unit tests.
test:
$(PYTHON) manage.py test -v2 main