From: Terry Wilson Date: Fri, 30 Jan 2015 17:05:34 +0000 (-0600) Subject: Fix flake exclude matching of .* X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=2843bc8af0d93675d790f1e63289dd31645a59fe;p=openstack-build%2Fneutron-build.git 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 --- 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 =