summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJohn L. Villalovos <john.l.villalovos@intel.com>2015-02-18 14:12:20 -0800
committerJohn L. Villalovos <john.l.villalovos@intel.com>2015-02-18 14:39:30 -0800
commitbb6a0b29c9286689942393ab56543497487de929 (patch)
treeb2033249d4b93fd83bf2c13a1b6c243f0ff87a3b /tox.ini
parent2f39d6e7dd7a12530c367e606bd39f9895c65a2c (diff)
downloadironic-bb6a0b29c9286689942393ab56543497487de929.tar.gz
For flake8 check, make the 'E12' ignore be more granular
ignore = E12 means ignore E12* errors. Make it more granular by converting to E121,E122,...,E129 This will make it easier in the future to remove a single ignore and update the code to resolve the issues. Change-Id: Iddff6a826bc7c9ff07643b7408c51f1bd129530c
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 23ae52108..f28732b02 100644
--- a/tox.ini
+++ b/tox.ini
@@ -52,7 +52,7 @@ commands = {posargs}
[flake8]
# E711: ignored because it is normal to use "column == None" in sqlalchemy
-ignore = E12,E711
+ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E711
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
max-complexity=17