summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-27 21:07:15 +0100
committerAndreas Jaeger <jaegerandi@gmail.com>2020-03-30 11:57:20 +0000
commit61b6e87de7ed29e9d41bbfb963e845143e814378 (patch)
tree9ac9da28683a2940e4d2485e9b0f452f2915080a /tox.ini
parent91073f4ea1d919604dc161a231b21de006a2a0cd (diff)
downloadpycadf-61b6e87de7ed29e9d41bbfb963e845143e814378.tar.gz
Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Blacklist W503, W504 Fix other problems found Change-Id: Ic0391ae45b9d6d1ee5e2c1df81d85e655250a51d
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 7f2ef4f..efc0a81 100644
--- a/tox.ini
+++ b/tox.ini
@@ -54,7 +54,9 @@ show-source = True
# D208: Docstring is over-indented
# 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,D208,D400,D401
+# W503 line break before binary operator
+# W504 line break after binary operator
+ignore = H405,D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D208,D400,D401,W503,W504
exclude = .tox,dist,doc,*.egg,build
[testenv:lower-constraints]