blob: 4b82a29061597eab2825ac0730fd1f3a45d23f58 [file] [log] [blame]
Sylvain Desbureauxe76075d2020-12-07 09:15:19 +01001[tox]
2minversion = 1.6
3envlist =
Sylvain Desbureaux090941b2020-12-09 10:13:42 +01004 docs,
5 docs-linkcheck,
Sylvain Desbureauxe76075d2020-12-07 09:15:19 +01006 gitlint,
7skipsdist=true
8
Sylvain Desbureaux090941b2020-12-09 10:13:42 +01009[doc8]
10ignore-path-errors=docs/helm-search.txt;D001
11
12[testenv:doc8]
13deps = -rdocs/requirements-docs.txt
14commands =
15 doc8 docs/
16
17[testenv:docs]
18deps = -rdocs/requirements-docs.txt
19commands =
20 sphinx-build -W -b html -n -W -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
21
22[testenv:docs-linkcheck]
23deps = -rdocs/requirements-docs.txt
24commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
25
Sylvain Desbureauxe76075d2020-12-07 09:15:19 +010026[testenv:gitlint]
27basepython = python3
28deps =
29 gitlint
30
31commands =
32 gitlint
33
Guillaume Lambertfbb7f162021-02-17 12:09:47 +010034[testenv:autopep8]
35deps = autopep8
36commands =
37 autopep8 --max-line-length 120 --in-place --recursive kubernetes/ TOSCA/ docs/
38
39[testenv:pylint]
40deps = pylint
41whitelist_externals = find
42commands =
43 find kubernetes/ TOSCA/ docs/ -name *.py -exec pylint --max-line-length=120 --disable=missing-docstring --method-rgx="(([a-z_][a-zA-Z0-9_]{2,})|(_[a-z0-9_]*)|(__[a-zA-Z][a-zA-Z0-9_]+__))$" --variable-rgx="[a-zA-Z_][a-zA-Z0-9_]{1,30}$" --reports=y --score=y --output-format=colorized \{\} +
44