CI: enforce bashate tox profile
[releng/global-jjb.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist =
4   ensure-documented,
5   jjb,
6   jjb-compare-xml,
7   jjb-latest,
8   jjb-version,
9   license,
10   bashate,
11   pre-commit
12 skipsdist = True
13
14 [testenv:docs]
15 basepython = python3
16 deps = -rrequirements.txt
17 commands =
18     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
19
20 [testenv:ensure-documented]
21 commands =
22     ./ensure-documented.sh
23
24 [testenv:jjb]
25 basepython = python3
26 deps =
27     jenkins-job-builder==2.8.0
28 commands =
29     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
30
31 [testenv:jjb-compare-xml]
32 basepython = python3
33 deps =
34     jenkins-job-builder
35 commands =
36     ./jjb-compare-xml.sh
37
38 [testenv:jjb-latest]
39 basepython = python3
40 deps =
41     jenkins-job-builder
42 commands =
43     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
44
45 [testenv:jjb-version]
46 basepython = python3
47 commands = python {toxinidir}/check_jjb_version.py
48
49 [testenv:license]
50 deps = lftools
51 commands = lftools license check-dir -r '.+' shell
52
53 [testenv:pre-commit]
54 basepython = python3
55 allowlist_externals =
56     /bin/sh
57 deps =
58     pre-commit
59 passenv = HOME
60 commands =
61     pre-commit run --all-files --show-diff-on-failure
62     /bin/sh -c 'if ! git config --get user.name > /dev/null; then \
63         git config --global --add user.name "CI"; \
64         touch .git/REMOVE_USERNAME; fi'
65     /bin/sh -c 'if ! git config --get user.email > /dev/null; then \
66         git config --global --add user.email "ci@example.org"; \
67         touch .git/REMOVE_USEREMAIL; fi'
68     /bin/sh -c "if [ -f .git/COMMIT_EDITMSG ]; then \
69         cp .git/COMMIT_EDITMSG .git/COMMIT_MSGTOX; else \
70         git log HEAD -n1 | tail -n +5 | cut -c 5- > .git/COMMIT_MSGTOX; fi"
71     pre-commit run gitlint --hook-stage commit-msg --commit-msg-filename .git/COMMIT_MSGTOX
72     /bin/sh -c "rm -f .git/COMMIT_MSGTOX"
73     /bin/sh -c "if [ -f .git/REMOVE_USERNAME ]; then \
74         git config --global --unset user.name; \
75         rm -f .git/REMOVE_USERNAME; fi"
76     /bin/sh -c "if [ -f .git/REMOVE_USEREMAIL ]; then \
77         git config --global --unset user.email; \
78         rm -f .git/REMOVE_USEREMAIL; fi"
79
80 [testenv:bashate]
81 basepython = python3
82 deps =
83     bashate
84 whitelist_externals = sh
85                       find
86 commands =
87     find . -not -path '*/\.*' -name *.sh -exec bashate  \{\} +
88     #The option --max-line-length 80 is used by default.
89
90 #########
91 # Tools #
92 #########
93
94 [testenv:jenkins-jobs]
95 deps =
96     jenkins-job-builder{env:JJB_VERSION_OP:~=}{env:JJB_VERSION:2.8.0}
97 commands =
98     jenkins-jobs {posargs:--help}
99
100 [testenv:lftools]
101 deps = lftools{env:LFTOOLS_VERSION_OP:~=}{env:LFTOOLS_VERSION:0.13.0}
102 commands = lftools {posargs:--help}
103
104 [testenv:openstack]
105 deps = python-openstackclient{env:OPENSTACK_VERSION_OP:~=}{env:OPENSTACK_VERSION:3.15.0}
106 commands = openstack {posargs:--help}
107
108 [testenv:reno]
109 deps = reno{env:RENO_VERSION_OP:~=}{env:RENO_VERSION:2.11.2}
110 commands = reno {posargs:--help}