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:
parent
e18f0cb003
commit
2843bc8af0
2
tox.ini
2
tox.ini
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user