14 lines
401 B
INI
14 lines
401 B
INI
![]() |
[tox]
|
||
|
minversion = 1.6
|
||
|
skipsdist = True
|
||
|
envlist = bashate
|
||
|
|
||
|
[testenv]
|
||
|
usedevelop = False
|
||
|
install_command = pip install {opts} {packages}
|
||
|
|
||
|
[testenv:bashate]
|
||
|
deps = bashate
|
||
|
whitelist_externals = bash
|
||
|
commands = bash -c "find {toxinidir} -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* -or \( -wholename lib/\* -and -not -name \*.md \) \) -print0 | xargs -0 bashate -v"
|