diff --git a/test-requirements.txt b/test-requirements.txt index 28342a5..154ac97 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,7 +1,7 @@ # The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. -hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0 +hacking>=4.0.0,<4.1.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0 fixtures>=3.0.0 # Apache-2.0/BSD diff --git a/tox.ini b/tox.ini index 5391665..eecb121 100644 --- a/tox.ini +++ b/tox.ini @@ -34,6 +34,9 @@ commands = {posargs} [flake8] # H405 multi line docstring summary not separated with an empty line -ignore = H405 +# W503 line break before binary operator +# W504 line break after binary operator +# W605 invalid escape sequence +ignore = H405,W503,W504,W605 exclude = .venv,.tox,dist,doc,*.egg,./os_collect_config/openstack/* show-source = true