Take sahara bashate check

This commit is contained in:
Vitaly Gridnev 2015-09-17 14:16:44 +03:00
parent 75ed055e04
commit 6a0333ff41
1 changed files with 1 additions and 13 deletions

14
tox.ini
View File

@ -10,16 +10,4 @@ install_command = pip install {opts} {packages}
[testenv:bashate]
deps = bashate
whitelist_externals = bash
commands = bash -c "find {toxinidir} \
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
-not \( -type d -name doc -prune \) \ # skip documentation
-type f \ # only files
-not -name \*~ \ # skip editors, readme, etc
-not -name \*.md \
\( \
-name \*.sh -or \
-name \*rc -or \
-name functions\* -or \
-wholename \*/lib/\* \ # /lib files are shell, but
\) \ # have no extension
-print0 | xargs -0 bashate -v"
commands = bash -c "find devstack -iname '*.sh' -print0 | xargs -0 bashate -v"