From cb1f99b855dccf77778ba713846a10d76ddec2c6 Mon Sep 17 00:00:00 2001 From: melissaml Date: Tue, 1 Nov 2016 17:48:39 +0800 Subject: [PATCH] Don't include openstack/common in flake8 exclude list There is no this directory openstack/common which was used to keep codes from oslo-incubator, we have retired oslo-incubator. Removing openstack/common from all OpenStack code in favor of the Oslo libraries is a project wide goal for the Ocata release. So don't use this directory any more. We should drop it for improving searching efficiency. Change-Id: I6cd76720af028688490d0a3508dc93c9ea8261fa --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c5e57be..13e5c09 100644 --- a/tox.ini +++ b/tox.ini @@ -41,7 +41,7 @@ commands= [flake8] ignore = E123,E126,E128,E241,E265,E713,H202,H405,H238 show-source = True -exclude=.venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build +exclude=.venv,.git,.tox,dist,*lib/python*,*egg,build max-complexity=20 [hacking]