summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-11-27 02:58:32 +0000
committerGerrit Code Review <review@openstack.org>2015-11-27 02:58:32 +0000
commit86d8c8de34a58026486386422bc7d099061f3587 (patch)
treebe1a8b8616d98397e63d25634d169ac697714478 /tox.ini
parent9596f94631f058ebe975533e341f29e4480506d0 (diff)
parent01297dce1a24d8506093f3a8c89c4e7484e9402c (diff)
downloadkeystonemiddleware-86d8c8de34a58026486386422bc7d099061f3587.tar.gz
Merge "Address hacking check H405."
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 6 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index d8a4389..5466ef6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -36,8 +36,12 @@ deps = -r{toxinidir}/test-requirements.txt
commands = bandit -c bandit.yaml -r keystonemiddleware -n5 -p keystone_conservative
[flake8]
-# H405: multi line docstring summary not separated with an empty line
-ignore = H405
+# NOTE(lbragstad): Even though we aren't ignoring any hacking checks, we have
+# to leave it assigned in the environment specification otherwise some error
+# checks will be ignored by default. If we need to ignore a specific hacking
+# check in the future, we will have to remove '___' from the ignore line.
+# See: http://flake8.readthedocs.org/en/latest/config.html#default
+ignore = ___
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*