Remove *openstack/common* from flake8 excclude list in tox.ini

The *openstack/common* was used to keep codes from oslo-incubator,
but oslo-incubator was ignore in oslo3.11.0. So I think we needn't
use it any more. Here is the oslo.utils CHANGES link:

http://docs.openstack.org/developer/oslo.utils/history.html

Change-Id: I828fbf5b1ee1435a85ffe5eb2295064b36064295
This commit is contained in:
Lu lei 2016-08-30 14:00:29 +08:00
parent 0f98bc2807
commit 09a03b3f0b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
[flake8]
ignore = D100,D101,D102,D103,D104,D105,D200,D201,D202,D204,D205,D300,D301,D400,D401
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]