From 8f9eccc4dc6059b11ecb22428f94bebff9b4caeb Mon Sep 17 00:00:00 2001 From: Luong Anh Tuan Date: Mon, 31 Oct 2016 11:08:30 +0700 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: Icf5c6fe7a704e132fb5feba2d84e2c9dbf9dd0e5 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4f4305f..8eddf1b 100644 --- a/tox.ini +++ b/tox.ini @@ -50,7 +50,7 @@ setenv = DJANGO_SETTINGS_MODULE=openstack_dashboard.test.settings commands = python setup.py build_sphinx [flake8] -exclude = .venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject +exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,panel_template,dash_template,local_settings.py,*/local/*,*/test/test_plugins/*,.ropeproject max-complexity = 20 [hacking]