summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-31 12:11:21 +0200
committerAndreas Jaeger <aj@suse.com>2020-03-31 12:16:31 +0200
commite25df2943d28588ceede989a801a32cc306019f7 (patch)
tree15a7969204198cca19206d273283c8680346b640 /tox.ini
parent526350eaeeadef8c1ca5f80547c01f94342a6653 (diff)
downloadpython-keystoneclient-e25df2943d28588ceede989a801a32cc306019f7.tar.gz
Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Fix problems found. Change-Id: Ic161a8f88c28d88898863e5b9d9380016fbb0d08
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 4509f07..a135278 100644
--- a/tox.ini
+++ b/tox.ini
@@ -58,7 +58,9 @@ passenv = OS_*
# 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
+# W504 line break after binary operator
+# F601 dictionary key repeated with different value
+ignore = D100,D101,D102,D103,D104,D203,W504,F601
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build