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