Update env variable extraction and VM creation steps
[kuberef.git] / tox.ini
1 [tox]
2 minversion = 3.15
3 skipsdist = True
4 envlist = lint,docs
5
6 [testenv]
7 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
8
9 [testenv:lint]
10 deps =
11    {env:BASHATE_INSTALL_PATH:bashate}
12    yamllint
13 whitelist_externals = bash
14 commands = bash -c "find {toxinidir} \
15    -not -path {toxinidir}/.tox/\* \
16    -name \*.sh | xargs bashate -v"
17    bash -c "yamllint {toxinidir}"