From c9e79ea94a89bfc13513c35e232b307d3ff63a6f Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Fri, 6 Feb 2015 06:17:59 -0500 Subject: [PATCH] Switch off oslo.* namespace check temporarily There's lot of code in flight that will break if we switch on the asserts to error out pep8/flake8 right now. So we should temporarily switch it off. Doing this as a separate review so it's easy to revery and stands out on its own. Change-Id: I7033847bab82b6d3cd8f2bdb66c553fec93d7acb --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 64304ef8bb8a..018f2afb2531 100644 --- a/tox.ini +++ b/tox.ini @@ -68,8 +68,9 @@ commands = # The rest of the ignores are TODOs # New from hacking 0.9: E129, E131, H407, H405 # E251 Skipped due to https://github.com/jcrocholl/pep8/issues/301 +# N333 Skip the oslo.* namespace check temporarily -ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405 +ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405,N333 exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools/xenserver* # To get a list of functions that are more complex than 25, set max-complexity # to 25 and run 'tox -epep8'.