From faf3a0a0290c986d05c78d77fbc93b5b6297fd20 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Thu, 28 Jan 2016 09:42:08 +0000 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f045893b..a3253b10 100644 --- a/tox.ini +++ b/tox.ini @@ -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