summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-01-23 04:17:00 +0000
committerGerrit Code Review <review@openstack.org>2016-01-23 04:17:01 +0000
commit1b9c9853cd675d5a44e3f7596976d25c833f2c22 (patch)
tree10c9e654a82b13749503627248ae7eeb2e82ce0b /tox.ini
parent0a0419d2b8a5580fbdce9a673b132af5fa0c4d57 (diff)
parent77ed0d4d0c3413b15aa348613b8b40373bd5765b (diff)
downloadpython-keystoneclient-1b9c9853cd675d5a44e3f7596976d25c833f2c22.tar.gz
Merge "Address hacking check H405"
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 84626ca..72b445b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -46,7 +46,6 @@ deps = -r{toxinidir}/test-requirements.txt
commands = bandit -c bandit.yaml -r keystoneclient -n5 -p keystone_conservative
[flake8]
-# H405: multi line docstring summary not separated with an empty line
# D100: Missing docstring in public module
# D101: Missing docstring in public class
# D102: Missing docstring in public method
@@ -64,7 +63,7 @@ commands = bandit -c bandit.yaml -r keystoneclient -n5 -p keystone_conservative
# D301: Use r”“” if any backslashes in a docstring
# D400: First line should end with a period.
# D401: First line should be in imperative mood.
-ignore = H405,D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D207,D208,D211,D301,D400,D401
+ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D207,D208,D211,D301,D400,D401
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*