summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhiQiang Fan <zhiqiang.fan@huawei.com>2015-01-22 11:54:45 +0800
committerZhiQiang Fan <zhiqiang.fan@huawei.com>2015-02-02 09:21:31 +0800
commiteafafe8315e73d5748972ba80cf5c6c74acc2e47 (patch)
tree894c48b37ecdcdd2febeba89ef4de300e97ec2be
parente458873b92358ba0a6e594287271bc36675c2aab (diff)
downloadpython-keystoneclient-eafafe8315e73d5748972ba80cf5c6c74acc2e47.tar.gz
Enable hacking rule E122 and H304
E122: continuation line missing indentation or outdented H304: no relative imports E122 and H304 havealready been fixed but not removed from exception list, this patch enables them. Change-Id: I1375bed51e9670fc4d174e7afce0ef3b3be83822
-rw-r--r--tox.ini4
1 files changed, 1 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index a050f6e..9b80c96 100644
--- a/tox.ini
+++ b/tox.ini
@@ -31,10 +31,8 @@ downloadcache = ~/cache/pip
commands = oslo_debug_helper -t keystoneclient/tests {posargs}
[flake8]
-# H304: no relative imports
# H405: multi line docstring summary not separated with an empty line
-# E122: continuation line missing indentation or outdented
-ignore = H304,H405,E122
+ignore = H405
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*