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
This commit is contained in:
Davanum Srinivas 2015-02-06 06:17:59 -05:00
parent af2d6c9576
commit c9e79ea94a
1 changed files with 2 additions and 1 deletions

View File

@ -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'.