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