From b4baff991551eb26b6ae4f3ef7c9db0d90be5cec Mon Sep 17 00:00:00 2001 From: xianming mao Date: Wed, 10 Aug 2016 19:37:05 +0800 Subject: [PATCH] Drop H803 in flake8 ignore list and useless directory openstack/common In hacking >=0.10.0,there is not H803,and in this project there have not directory openstack/common,so we should delete them to improve performance! Change-Id: Ie39175fa16fa488d3e6066df25ebfcaa0a0fc4e2 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 8fbb5967..6b2427e3 100644 --- a/tox.ini +++ b/tox.ini @@ -28,5 +28,5 @@ commands = python setup.py testr --coverage --testr-args='{posargs}' # E123, E125 skipped as they are invalid PEP-8. show-source = True -ignore = E123,E125,H803 -exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build +ignore = E123,E125 +exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build