From e7edb092c1be117881786177de57c2c9a88d7884 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 28 May 2015 09:16:20 -0700 Subject: [PATCH] Ignore .tox directory to remove some bashate failures Change-Id: I7342e4b0b31e0add681ab5b24083eda10031f0cf Partially-Implements: blueprint bashate-gate --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ab01628897..8c5b9135c6 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ deps = bashate whitelist_externals = bash # tox improperly interprets # and {1} in regex, so match on [[:punct:]]+ commands = - bash -c "files=`egrep -rlI --exclude-dir .git '^[[:punct:]]+!/(bin/|/usr/bin/env )(ba)?sh' .` && bashate $files" + bash -c "files=`egrep -rlI --exclude-dir .git --exclude-dir .tox '^[[:punct:]]+!/(bin/|/usr/bin/env )(ba)?sh' .` && bashate $files" [testenv:setupenv] whitelist_externals = bash