diff --git a/test-requirements.txt b/test-requirements.txt index 8ca89a33b8..96266a7c6b 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,4 +1,4 @@ -hacking>=0.8.0,<0.9 +hacking>=0.9.1,<0.10 coverage>=3.6 discover feedparser diff --git a/tox.ini b/tox.ini index 36256b40b5..9f17b14b19 100644 --- a/tox.ini +++ b/tox.ini @@ -57,8 +57,10 @@ sitepackages = False # H803 skipped on purpose per list discussion. # E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126 # The rest of the ignores are TODOs +# New from hacking 0.9: E129, E131, E265, E713, H407, H405, H904 +# Stricter in hacking 0.9: E111, E112, E113, E251, E303, F402, F812,H401,H402 -ignore = E121,E122,E123,E124,E125,E126,E127,E128,E711,E712,F811,H803 +ignore = E111,E112,E113,E121,E122,E123,E124,E125,E129,E126,E127,E128,E131,E251,E265,E303,E711,E712,E713,F811,F402,F812,H305,H307,H401,H402,H405,H803,H904 exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools [hacking]