tox: ignore E126, E127, E128 indentation checks

The flake8 E126, E127, E128 checks are all checking various
aspects of indentation, but they are mutually inconsistent
with each other - ie fixing one causes a violation in the
other. They are all counter to normal Nova coding style and
ignored in Nova, so kill them in os-vif too.

Change-Id: Ib28652de17329141d437a3354e60f3b0f5f53968
This commit is contained in:
Daniel P. Berrange 2016-01-28 09:42:08 +00:00
parent 7ae8163bc9
commit faf3a0a029
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ commands = python setup.py build_sphinx
# ignored on purpose for the moment and should be re-enabled.
show-source = True
ignore = E123,E125,E251,E265,H302,H402,H405,H803,H904,H404
ignore = E123,E125,E126,E127,E128,E251,E265,H302,H402,H405,H803,H904,H404
builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
max-complexity=30