blob: 1879ded24e31da187349b27ca87589408be84405 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[tox]
minversion = 3.5
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
rstcheck
whitelist_externals = bash
commands = bash -c "find {toxinidir} \
-not -path {toxinidir}/.tox/\* \
# E006 check for lines longer than 79 columns
-name \*.sh | xargs bashate -v -iE006"
bash -c "yamllint {toxinidir}"
bash -c "find {toxinidir} \
-not -path {toxinidir}/.tox/\* \
-name \*.rst | xargs rstcheck"
|