Merge "Skip 'shocco' code when running tox"
This commit is contained in:
commit
7757df5a88
27
tox.ini
27
tox.ini
@ -10,19 +10,20 @@ install_command = pip install {opts} {packages}
|
|||||||
[testenv:bashate]
|
[testenv:bashate]
|
||||||
deps = bashate
|
deps = bashate
|
||||||
whitelist_externals = bash
|
whitelist_externals = bash
|
||||||
commands = bash -c "find {toxinidir} \
|
commands = bash -c "find {toxinidir} \
|
||||||
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
|
-not \( -type d -name .?\* -prune \) \ # prune all 'dot' dirs
|
||||||
-not \( -type d -name doc -prune \) \ # skip documentation
|
-not \( -type d -name doc -prune \) \ # skip documentation
|
||||||
-type f \ # only files
|
-not \( -type d -name shocco -prune \) \ # skip shocco
|
||||||
-not -name \*~ \ # skip editors, readme, etc
|
-type f \ # only files
|
||||||
-not -name \*.md \
|
-not -name \*~ \ # skip editors, readme, etc
|
||||||
\( \
|
-not -name \*.md \
|
||||||
-name \*.sh -or \
|
\( \
|
||||||
-name \*rc -or \
|
-name \*.sh -or \
|
||||||
-name functions\* -or \
|
-name \*rc -or \
|
||||||
-wholename \*/inc/\* -or \ # /inc files and
|
-name functions\* -or \
|
||||||
-wholename \*/lib/\* \ # /lib files are shell, but
|
-wholename \*/inc/\* -or \ # /inc files and
|
||||||
\) \ # have no extension
|
-wholename \*/lib/\* \ # /lib files are shell, but
|
||||||
|
\) \ # have no extension
|
||||||
-print0 | xargs -0 bashate -v"
|
-print0 | xargs -0 bashate -v"
|
||||||
|
|
||||||
[testenv:docs]
|
[testenv:docs]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user