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