Ignore pep8 error: N530: Direct neutron imports not allowed

tox is imposing test N530: Direct neutron imports not allowed. Added it
to ignored list, pending solution of bug 1574230.

Change-Id: I59ff15225b213bf57b5c1eb3423c27543c1d42ab
Related-Bug: 1574230
This commit is contained in:
Omer Anson 2016-04-24 14:20:31 +03:00
parent 911b9d5e5c
commit 9c85585550
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ commands = python setup.py build_sphinx
# H405 multi line docstring summary not separated with an empty line
# H904 Wrap long lines in parentheses instead of a backslash
# H233 Python 3.x incompatible use of print operator
ignore = E125,E126,E128,E129,E265,H301,H305,H307,H402,H404,H405,H904,H233
# N530 Direct neutron imports not allowed
ignore = E125,E126,E128,E129,E265,H301,H305,H307,H402,H404,H405,H904,H233,N530
show-source = true
# TODO(dougw) neutron/tests/unit/vmware exclusion is a temporary services split hack
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,.ropeproject,rally-scenarios,neutron/tests/unit/vmware*