summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-27 21:06:18 +0100
committerAndreas Jaeger <jaegerandi@gmail.com>2020-03-30 10:32:07 +0000
commitf32fcc6623ccaf4c465700c23fa20f66c5c79daf (patch)
tree20c48df01fedfeb0b59f03a5416d415e50f52ac4 /tox.ini
parent66352680ab7abc1c2bcc0dbe61c5558c41e4ff20 (diff)
downloadkeystonemiddleware-f32fcc6623ccaf4c465700c23fa20f66c5c79daf.tar.gz
Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Blacklist: W504 line break after binary operator W503 line break before binary operator Fix other problems found Change-Id: I2fb257a4f42b499df3702f3e8f3c99ecb28557d6
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index a576bb6..4023606 100644
--- a/tox.ini
+++ b/tox.ini
@@ -50,7 +50,9 @@ commands = oslo_debug_helper -t keystonemiddleware/tests {posargs}
# D103: Missing docstring in public function
# D104: Missing docstring in public package
# D203: 1 blank line required before class docstring (deprecated in pep257)
-ignore = D100,D101,D102,D103,D104,D203
+# W503 line break before binary operator
+# W504 line break after binary operator
+ignore = D100,D101,D102,D103,D104,D203,W503,W504
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build