CI: Update workflow to pull latest gerrit checkout
[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 allowlist_externals =
18     git
19 commands =
20     git fetch --unshallow
21     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
22
23 [testenv:ensure-documented]
24 allowlist_externals =
25     ./ensure-documented.sh
26 commands =
27     ./ensure-documented.sh
28
29 [testenv:jjb]
30 basepython = python3
31 deps =
32     jenkins-job-builder==6.0.0
33     setuptools
34 commands =
35     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
36
37 [testenv:jjb-compare-xml]
38 basepython = python3
39 deps =
40     jenkins-job-builder==6.0.0
41 allowlist_externals =
42     ./jjb-compare-xml.sh
43 commands =
44     ./jjb-compare-xml.sh
45
46 [testenv:jjb-latest]
47 basepython = python3
48 deps =
49     jenkins-job-builder
50 commands =
51     jenkins-jobs -l DEBUG test --recursive -o {toxinidir}/archives/job-configs {toxinidir}/jjb:{toxinidir}/.jjb-test
52
53 [testenv:jjb-version]
54 basepython = python3
55 commands = python {toxinidir}/check_jjb_version.py
56
57 [testenv:license]
58 deps = lftools
59 commands = lftools license check-dir -r '.+' shell
60
61 [testenv:pre-commit]
62 basepython = python3
63 allowlist_externals =
64     /bin/sh
65 deps =
66     pre-commit
67 passenv = HOME
68 commands =
69     pre-commit run --all-files --show-diff-on-failure
70     /bin/sh -c 'if ! git config --get user.name > /dev/null; then \
71         git config --global --add user.name "CI"; \
72         touch .git/REMOVE_USERNAME; fi'
73     /bin/sh -c 'if ! git config --get user.email > /dev/null; then \
74         git config --global --add user.email "ci@example.org"; \
75         touch .git/REMOVE_USEREMAIL; fi'
76     /bin/sh -c "if [ -f .git/COMMIT_EDITMSG ]; then \
77         cp .git/COMMIT_EDITMSG .git/COMMIT_MSGTOX; else \
78         git log HEAD -n1 | tail -n +5 | cut -c 5- > .git/COMMIT_MSGTOX; fi"
79     pre-commit run gitlint --hook-stage commit-msg --commit-msg-filename .git/COMMIT_MSGTOX
80     /bin/sh -c "rm -f .git/COMMIT_MSGTOX"
81     /bin/sh -c "if [ -f .git/REMOVE_USERNAME ]; then \
82         git config --global --unset user.name; \
83         rm -f .git/REMOVE_USERNAME; fi"
84     /bin/sh -c "if [ -f .git/REMOVE_USEREMAIL ]; then \
85         git config --global --unset user.email; \
86         rm -f .git/REMOVE_USEREMAIL; fi"
87
88 [testenv:bashate]
89 basepython = python3
90 deps =
91     bashate
92 allowlist_externals = find
93                       sh
94 setenv =
95     RULES_IGNORED = E001,E002,E003,E004,E005,E007,E008,E009,E010,E011,E012,E013,E014,E015,E016,E017,E018,E019,E020,E021,E022,E023,E024,E025,E026,E027,E028,E029,E030,E031,E032,E033,E034,E035,E036,E037,E038,E039,E040,E041,E042,E043,E044
96 #RULES_IGNORED = `seq -s',E' -w 0 100| cut -d, -f2-6,8-45)`
97 commands =
98     # forbid lines > 120 char
99     sh -c "find . -not -path '*/\.*' -name '*.sh' -exec bashate -e E006 -i $RULES_IGNORED --max-line-length 120 \{\} +"
100     # perform bashate and warn lines > 80 char
101     #find . -not -path '*/\.*' -name *.sh -exec bashate  \{\} +
102     #The option --max-line-length 80 is used by default.
103
104 #########
105 # Tools #
106 #########
107
108 [testenv:jenkins-jobs]
109 deps =
110     jenkins-job-builder{env:JJB_VERSION_OP:~=}{env:JJB_VERSION:6.0.0}
111 commands =
112     jenkins-jobs {posargs:--help}
113
114 [testenv:lftools]
115 deps = lftools{env:LFTOOLS_VERSION_OP:~=}{env:LFTOOLS_VERSION:0.13.0}
116 commands = lftools {posargs:--help}
117
118 [testenv:openstack]
119 deps = python-openstackclient{env:OPENSTACK_VERSION_OP:~=}{env:OPENSTACK_VERSION:3.15.0}
120 commands = openstack {posargs:--help}
121
122 [testenv:reno]
123 deps = reno{env:RENO_VERSION_OP:~=}{env:RENO_VERSION:2.11.2}
124 commands = reno {posargs:--help}