1e3b0d8053
Change-Id: Id06bb20d5e6c8803b5890788e803f0fa3d893d75
18 lines
360 B
INI
18 lines
360 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = linters,bashate
|
|
skipsdist = True
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:linters]
|
|
deps = yamllint
|
|
commands =
|
|
{toxinidir}/tools/yamllint.sh
|
|
|
|
[testenv:bashate]
|
|
deps = bashate>=0.2
|
|
whitelist_externals = bash
|
|
commands = bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v"
|