Chore: Upgrade base version of JJB to 4.1.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 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==4.1.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 = find
85                       sh
86 setenv =
87     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
88 #RULES_IGNORED = `seq -s',E' -w 0 100| cut -d, -f2-6,8-45)`
89 commands =
90     # forbid lines > 120 char
91     sh -c "find . -not -path '*/\.*' -name '*.sh' -exec bashate -e E006 -i $RULES_IGNORED --max-line-length 120 \{\} +"
92     # perform bashate and warn lines > 80 char
93     find . -not -path '*/\.*' -name *.sh -exec bashate  \{\} +
94     #The option --max-line-length 80 is used by default.
95
96 #########
97 # Tools #
98 #########
99
100 [testenv:jenkins-jobs]
101 deps =
102     jenkins-job-builder{env:JJB_VERSION_OP:~=}{env:JJB_VERSION:4.1.0}
103 commands =
104     jenkins-jobs {posargs:--help}
105
106 [testenv:lftools]
107 deps = lftools{env:LFTOOLS_VERSION_OP:~=}{env:LFTOOLS_VERSION:0.13.0}
108 commands = lftools {posargs:--help}
109
110 [testenv:openstack]
111 deps = python-openstackclient{env:OPENSTACK_VERSION_OP:~=}{env:OPENSTACK_VERSION:3.15.0}
112 commands = openstack {posargs:--help}
113
114 [testenv:reno]
115 deps = reno{env:RENO_VERSION_OP:~=}{env:RENO_VERSION:2.11.2}
116 commands = reno {posargs:--help}