From 313cbcda4488da01c7b4eca8e1e63418b68ba59e Mon Sep 17 00:00:00 2001 From: gecong1973 Date: Fri, 25 Nov 2016 11:09:38 +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/commonfrom 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: I65e1a75c65d44ff50c9ab0c2ff8c66faa99c227b --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c5781cde..5fec2a15 100644 --- a/tox.ini +++ b/tox.ini @@ -27,4 +27,4 @@ max-line-length = 120 # H405 multi line docstring summary not separated with an empty line # H904 Wrap long lines in parentheses instead of a backslash ignore = F821,H405,H904,E126,E125,H306,E302,E122 -exclude=.venv,.git,.tox,dist,*openstack/common*,*egg,build +exclude=.venv,.git,.tox,dist,*egg,build