diff options
author | lin-hua-cheng <os.lcheng@gmail.com> | 2016-01-13 13:03:51 -0800 |
---|---|---|
committer | lin-hua-cheng <os.lcheng@gmail.com> | 2016-01-13 13:03:51 -0800 |
commit | 77ed0d4d0c3413b15aa348613b8b40373bd5765b (patch) | |
tree | 01e67a56791a4575eb28ee25de46cd6111035bde /tox.ini | |
parent | 7327067f98f5e118790817f7c81e444c7fe7c25b (diff) | |
download | python-keystoneclient-77ed0d4d0c3413b15aa348613b8b40373bd5765b.tar.gz |
Address hacking check H405
Previously, there were a string of commits to keystone that addresed ignored
hacking checks. This commit does the same for H405 in keystoneclient. This
also modifies our tox.ini so that we no longer ignore H405 violations.
Change-Id: I2af152e5425a0e9c82314039fdbb90d661c22680
Closes-Bug: 1482773
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -38,7 +38,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 @@ -56,7 +55,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* |