From 2843bc8af0d93675d790f1e63289dd31645a59fe Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Fri, 30 Jan 2015 11:05:34 -0600 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4154d6276..90d6019fd 100644 --- a/tox.ini +++ b/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 = -- 2.45.2