summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Shrewsbury <shrewsbury.dave@gmail.com>2014-10-13 10:09:53 -0400
committerDavid Shrewsbury <shrewsbury.dave@gmail.com>2014-10-13 10:09:53 -0400
commit8858c610a908de1a6c6e82cc7e8cd23e9281b7a9 (patch)
tree97d7cf7d259c2ed8f47432c04616c831978ea36b /tox.ini
parente8a5b3ab62e2dc57115607fc26993e520c41f6bd (diff)
downloadironic-8858c610a908de1a6c6e82cc7e8cd23e9281b7a9.tar.gz
Enable H307 PEP8 check
Fixes files with the PEP8 error: H307 like imports should be grouped together and enables the check in tox.ini. For the modified files, made sure the import order matches the template as described in: http://docs.openstack.org/developer/hacking/#import-order-template This order is currently: stdlib, 3rd-party, and project imports. Change-Id: I4538356c207535b778da1273aadcf3b4a7b20383
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index d371ff330..9b864a96b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -47,7 +47,7 @@ commands = {posargs}
[flake8]
# E711: ignored because it is normal to use "column == None" in sqlalchemy
# TODO(yuriyz): Analyze or fix the warnings blacklisted below
-ignore = E12,E111,E113,E131,E265,E711,F812,H305,H307
+ignore = E12,E111,E113,E131,E265,E711,F812,H305
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
[hacking]