Bump hacking
hacking was indirectly capped by pycodestyle. This bumps hacking to
apply the rules recently added.
Also remove the note about pip's behavior, which is no longer valid
for recent versions.
notes:
- T117 test is now disabled. There are a lot of lines violating
this rule and we have to decide if we really want to enforce it.
- Once this is merged, we have to update bump hacking in some plugins
which import hacking extensions from tempest.
Change-Id: I5ee5e152418079f9f2720eb97c3a5361edba2695
diff --git a/tox.ini b/tox.ini
index e3c8fcf..d9d2bad 100644
--- a/tox.ini
+++ b/tox.ini
@@ -411,7 +411,8 @@
# E129 skipped because it is too limiting when combined with other rules
# W504 skipped because it is overeager and unnecessary
# H405 skipped because it arbitrarily forces doctring "title" lines
-ignore = E125,E123,E129,W504,H405
+# I201 and I202 skipped because the rule does not allow new line between 3rd party modules and own modules
+ignore = E125,E123,E129,W504,H405,I201,I202,T117
show-source = True
exclude = .git,.venv,.tox,dist,doc,*egg,build
enable-extensions = H106,H203,H904