From 8ab1b33f8258eff1cb66b1e8c3f7d4816d9a52c5 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Sat, 21 Oct 2017 10:01:02 -0700 Subject: [PATCH] Ignore some more pep8 errors These match our other python projects. Change-Id: Idbbea0934b58401fa72e5a5a2933680bf75358e8 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ac5cfc8a56..6f66a9a4d5 100644 --- a/tox.ini +++ b/tox.ini @@ -40,7 +40,9 @@ commands = [flake8] show-source = True exclude = .tox,.test -ignore = E125,H +# These are ignored intentionally in openstack-infra projects; +# please don't submit patches that solely correct them or enable them. +ignore = E125,E129,E402,H,W503 [testenv:grafyaml] basepython = python2.7