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