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: If2ca9333319fd78a53c73ab313411ed2f17b07f2
This commit is contained in:
Luong Anh Tuan 2016-10-31 11:19:34 +07:00
parent 1312d4b4ce
commit 67691c3cfc
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ commands = python setup.py build_sphinx
show-source = True show-source = True
ignore = H803 ignore = H803
builtins = _ builtins = _
exclude=.venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build,*autogenerate_config_docs/venv,*autogenerate_config_docs/sources exclude=.venv,.git,.tox,dist,*lib/python*,*egg,build,*autogenerate_config_docs/venv,*autogenerate_config_docs/sources
# 28 is currently the most complex thing we have # 28 is currently the most complex thing we have
max-complexity=29 max-complexity=29