Fix flake exclude matching of .*

When using \.* for a match, flake8 tests all files in .venv on my
machine. Replacing this match with ./.* fixes the issue.

Change-Id: If5617daad95e8b33888b672e36f38ade07d7cb89
This commit is contained in:
Terry Wilson 2015-01-30 11:05:34 -06:00
parent e18f0cb003
commit 2843bc8af0

View File

@ -79,7 +79,7 @@ ignore = E125,E126,E128,E129,E265,H305,H404,H405
show-source = true
builtins = _
# TODO(dougw) neutron/tests/unit/vmware exclusion is a temporary services split hack
exclude = \.*,build,dist,neutron/openstack/common/*,neutron/tests/unit/vmware*
exclude = ./.*,build,dist,neutron/openstack/common/*,neutron/tests/unit/vmware*
[testenv:pylint]
deps =