summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-01-11 12:28:22 -0600
committerBrant Knudson <bknudson@us.ibm.com>2015-01-13 16:49:00 -0600
commitdc6906340bcfc0b97c2fc7e73b5b7c19916a180c (patch)
tree0233133eb082bce1aad33704eb150541251a9341 /tox.ini
parent6237c1bffd540d9d2688e2206146600d5846ece6 (diff)
downloadpython-keystoneclient-dc6906340bcfc0b97c2fc7e73b5b7c19916a180c.tar.gz
Correct failures for check W292
The new W292 "no newline at end of file" rule was failing and ignored. Now it's enforced. Change-Id: I71ba57a056b5b0c772482f5bd80f3e05dffa54d2
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index f37618b..b3e1d5d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -35,8 +35,8 @@ commands = oslo_debug_helper -t keystoneclient/tests {posargs}
# H304: no relative imports
# H405: multi line docstring summary not separated with an empty line
# E122: continuation line missing indentation or outdented
-# New from hacking 0.10: H238,W292
-ignore = F821,H238,H304,H405,E122,W292
+# New from hacking 0.10: H238
+ignore = F821,H238,H304,H405,E122
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*