bashate: do not check contrib directory

Change-Id: I23a579bbd2692bc80d1be18435f140fb6fb276cc
This commit is contained in:
Christian Berendt 2015-09-30 11:15:52 +02:00
parent 281f4fd277
commit fb9a96f11e
1 changed files with 7 additions and 6 deletions

13
tox.ini
View File

@ -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"