summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-04-02 15:22:04 +0200
committerAndreas Jaeger <aj@suse.com>2020-04-02 15:26:13 +0200
commit279ea4766ede074662ff29dde86a885458ec501f (patch)
treeb7341f2f1070a52fb5d602071cfd4611e09e6f21 /tox.ini
parentbf64eb26dad37f86e83d6910f474db3c619ab4dc (diff)
downloadglance_store-279ea4766ede074662ff29dde86a885458ec501f.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. Remove hacking and friends from lower-constraints, they are not needed for installation. Change-Id: I99b8b24f714858f6b289e5e7b5976e519bb81c11
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 b4248c1..749937c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -59,7 +59,9 @@ ignore-path = .venv,.git,.tox,*glance_store/locale*,*lib/python*,glance_store.eg
# H301 one import per line
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
-ignore = H301,H404,H405
+# W503 line break before binary operator
+# W504 line break after binary operator
+ignore = H301,H404,H405,W503,W504
exclude = .venv,.git,.tox,dist,doc,etc,*glance_store/locale*,*lib/python*,*egg,build
[testenv:lower-constraints]