From fb9a96f11e9ed58f9b1e520c2a59a3346dd0869e Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Wed, 30 Sep 2015 11:15:52 +0200 Subject: [PATCH] bashate: do not check contrib directory Change-Id: I23a579bbd2692bc80d1be18435f140fb6fb276cc --- tox.ini | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 095fe27..5ddc9d9 100644 --- a/tox.ini +++ b/tox.ini @@ -6,10 +6,11 @@ envlist = bashate [testenv:bashate] deps = bashate whitelist_externals = bash -commands = bash -c "find {toxinidir} \ - -not \( -type d -name .?\* -prune \) \ - -type f \ - -not -name \*~ \ - -not -name \*.md \ - -name \*.sh \ +commands = bash -c "find {toxinidir} \ + -not \( -type d -name .?\* -prune \) \ + -not \( -type d -name contrib -prune \) \ + -type f \ + -not -name \*~ \ + -not -name \*.md \ + -name \*.sh \ -print0 | xargs -0 bashate -v"