blob: fd3aa2a8e774023fa7fc72402d5f2c58f5727466 [file] [log] [blame]
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +01001- job:
2 name: devstack-tempest
3 parent: devstack
Andrea Frittoli688f36e2018-02-18 22:27:34 +00004 nodeset: openstack-single-node
5 description: |
6 Base Tempest job.
7
8 This Tempest job provides the base for both the single and multi-node
9 test setup. To run a multi-node test inherit from devstack-tempest and
10 set the nodeset to a multi-node one.
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010011 required-projects:
12 - openstack/tempest
13 timeout: 7200
14 roles:
15 - zuul: openstack-dev/devstack
16 vars:
17 devstack_services:
James E. Blaird5980092018-01-24 16:43:27 -080018 tempest: true
Andrea Frittoli688f36e2018-02-18 22:27:34 +000019 devstack_local_conf:
20 test-config:
21 $TEMPEST_CONFIG:
22 compute:
23 min_compute_nodes: "{{ groups['compute'] | default(['controller']) | length }}"
Andrea Frittoli4c24a1a2018-01-31 22:21:07 +000024 test_results_stage_name: 'test_results'
25 zuul_copy_output:
26 '{{ devstack_base_dir }}/tempest/etc/tempest.conf': 'logs'
27 '{{ devstack_base_dir }}/tempest/etc/accounts.yaml': 'logs'
28 '{{ devstack_base_dir }}/tempest/tempest.log': 'logs'
29 '{{ stage_dir }}/{{ test_results_stage_name }}.subunit': 'logs'
30 '{{ stage_dir }}/{{ test_results_stage_name }}.html': 'logs'
31 '{{ stage_dir }}/stackviz': 'logs'
32 extensions_to_txt:
33 conf: True
34 log: True
35 yaml: True
36 yml: True
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010037 run: playbooks/devstack-tempest.yaml
Andrea Frittoli (andreaf)74810552017-10-03 18:56:56 +010038 post-run: playbooks/post-tempest.yaml
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010039
Chandan Kumarcf576b22017-10-23 17:43:36 +053040- job:
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000041 name: tempest-full
42 parent: devstack-tempest
Andrea Frittoli1c2a8022018-02-20 15:58:13 +000043 # This currently works from stable/pike on.
Andrea Frittolia23924f2018-02-18 22:35:16 +000044 branches:
45 - master
46 - stable/queens
Andrea Frittoli1c2a8022018-02-20 15:58:13 +000047 - stable/pike
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000048 description: |
49 Base integration test with Neutron networking and py27.
50 Former names for this job where:
51 * legacy-tempest-dsvm-neutron-full
52 * gate-tempest-dsvm-neutron-full-ubuntu-xenial
53 vars:
Andreas Jaegerba2f4792018-01-12 16:48:52 +010054 tox_envlist: full
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000055 devstack_localrc:
James E. Blaird5980092018-01-24 16:43:27 -080056 ENABLE_FILE_INJECTION: true
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000057
58- job:
Attila Fazekas3f219f52018-03-01 16:50:10 +000059 name: tempest-full-parallel
60 parent: tempest-full
61 voting: false
62 branches:
63 - master
64 description: |
65 Base integration test with Neutron networking and py27.
66 It includes all scenarios as it was in the past.
67 This job runs all scenario tests in parallel!
68 vars:
69 tox_envlist: full-parallel
70
71- job:
Andrea Frittolic4377ef2017-11-30 12:00:38 +000072 name: tempest-full-py3
Andrea Frittoli85076bd2018-01-24 10:19:40 +000073 parent: devstack-tempest
Andrea Frittolia23924f2018-02-18 22:35:16 +000074 branches:
75 - master
76 - stable/queens
Andrea Frittoli85076bd2018-01-24 10:19:40 +000077 description: |
78 Base integration test with Neutron networking and py3.
79 Former names for this job where:
80 * legacy-tempest-dsvm-py35
81 * gate-tempest-dsvm-py35
Andrea Frittolic4377ef2017-11-30 12:00:38 +000082 vars:
Andrea Frittoli85076bd2018-01-24 10:19:40 +000083 tox_envlist: full
Andrea Frittolic4377ef2017-11-30 12:00:38 +000084 devstack_localrc:
85 USE_PYTHON3: True
86 FORCE_CONFIG_DRIVE: True
Andrea Frittolic4377ef2017-11-30 12:00:38 +000087 devstack_services:
88 s-account: false
89 s-container: false
90 s-object: false
91 s-proxy: false
92 # without Swift, c-bak cannot run (in the Gate at least)
93 c-bak: false
94
Andrea Frittoli688f36e2018-02-18 22:27:34 +000095- job:
96 name: tempest-multinode-full
97 parent: devstack-tempest
98 nodeset: openstack-two-node
99 # Until the devstack changes are backported, only run this on master
100 branches:
101 - master
102 description: |
103 Base multinode integration test with Neutron networking and py27.
104 Former names for this job where:
105 * neutron-tempest-multinode-full
106 * legacy-tempest-dsvm-neutron-multinode-full
107 * gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv
108 This job includes two nodes, controller / tempest plus a subnode, but
109 it can be used with different topologies, as long as a controller node
110 and a tempest one exist.
111 vars:
112 tox_envlist: full
113 devstack_localrc:
114 FORCE_CONFIG_DRIVE: False
115 NOVA_ALLOW_MOVE_TO_SAME_HOST: false
116 LIVE_MIGRATION_AVAILABLE: true
117 USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true
118 group-vars:
119 peers:
120 devstack_localrc:
121 NOVA_ALLOW_MOVE_TO_SAME_HOST: false
122 LIVE_MIGRATION_AVAILABLE: true
123 USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true
124
Jens Harbottff03e222018-02-26 10:54:48 +0000125- nodeset:
126 name: openstack-bionic-node
127 nodes:
128 - name: controller
129 label: ubuntu-bionic
130 groups:
131 - name: tempest
132 nodes:
133 - controller
134
135- job:
136 name: tempest-full-py36
137 parent: tempest-full-py3
138 nodeset: openstack-bionic-node
139 branches:
140 - master
141 description: |
142 Base integration test with Neutron networking and py36.
143 voting: false
144
ghanshyam402df092018-05-14 01:29:04 +0000145# TODO(gmann): needs to migrate this to zuulv3
146- job:
ghanshyam8db07072018-06-19 09:42:00 +0000147 name: tempest-scenario-all
ghanshyam402df092018-05-14 01:29:04 +0000148 parent: legacy-dsvm-base-multinode
ghanshyama3c5a792018-05-14 12:31:27 +0000149 description: |
150 This job will run all scenario tests including slow tests
ghanshyam8db07072018-06-19 09:42:00 +0000151 with lvm multibackend setup. This job will not run any API tests.
ghanshyam402df092018-05-14 01:29:04 +0000152 run: playbooks/tempest-scenario-multinode-lvm-multibackend/run.yaml
153 post-run: playbooks/tempest-scenario-multinode-lvm-multibackend/post.yaml
154 timeout: 10800
155 required-projects:
156 - openstack-infra/devstack-gate
157 - openstack/neutron
158 - openstack/tempest
159 nodeset: ubuntu-xenial-2-node
160
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000161- job:
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000162 name: tempest-full-queens
163 parent: tempest-full
164 override-checkout: stable/queens
165
166- job:
167 name: tempest-full-queens-py3
168 parent: tempest-full-py3
169 override-checkout: stable/queens
170
171- job:
Andrea Frittoli1c2a8022018-02-20 15:58:13 +0000172 name: tempest-full-pike
173 parent: tempest-full
174 override-checkout: stable/pike
175
176- job:
Chandan Kumarcf576b22017-10-23 17:43:36 +0530177 name: tempest-tox-plugin-sanity-check
178 parent: tox
179 description: |
180 Run tempest plugin sanity check script using tox.
181 nodeset: ubuntu-xenial
182 vars:
183 tox_envlist: plugin-sanity-check
184 voting: false
185 timeout: 5000
ghanshyam39d03802017-12-05 14:19:37 +0300186 irrelevant-files:
187 - ^.*\.rst$
188 - ^doc/.*$
189 - ^etc/.*$
190 - ^releasenotes/.*$
191 - ^tempest/hacking/.*$
192 - ^tempest/tests/.*$
Chandan Kumarcf576b22017-10-23 17:43:36 +0530193 required-projects:
194 - openstack/almanach
195 - openstack/aodh
196 - openstack/barbican-tempest-plugin
197 - openstack/ceilometer
198 - openstack/cinder
199 - openstack/congress
200 - openstack/designate-tempest-plugin
201 - openstack/ec2-api
202 - openstack/freezer
203 - openstack/freezer-api
204 - openstack/freezer-tempest-plugin
205 - openstack/gce-api
206 - openstack/glare
207 - openstack/heat
208 - openstack/intel-nfv-ci-tests
209 - openstack/ironic
210 - openstack/ironic-inspector
211 - openstack/keystone-tempest-plugin
212 - openstack/kingbird
213 - openstack/kuryr-tempest-plugin
214 - openstack/magnum
215 - openstack/magnum-tempest-plugin
216 - openstack/manila
217 - openstack/manila-tempest-plugin
218 - openstack/mistral
219 - openstack/mogan
220 - openstack/monasca-api
221 - openstack/monasca-log-api
222 - openstack/murano
223 - openstack/networking-bgpvpn
224 - openstack/networking-cisco
225 - openstack/networking-fortinet
226 - openstack/networking-generic-switch
227 - openstack/networking-l2gw
228 - openstack/networking-midonet
229 - openstack/networking-plumgrid
230 - openstack/networking-sfc
231 - openstack/neutron
232 - openstack/neutron-dynamic-routing
233 - openstack/neutron-fwaas
234 - openstack/neutron-lbaas
235 - openstack/neutron-tempest-plugin
236 - openstack/neutron-vpnaas
237 - openstack/nova-lxd
238 - openstack/novajoin-tempest-plugin
Bar RHca15fe02017-12-20 02:40:52 +0200239 - openstack/octavia-tempest-plugin
Chandan Kumarcf576b22017-10-23 17:43:36 +0530240 - openstack/oswin-tempest-plugin
241 - openstack/panko
242 - openstack/patrole
243 - openstack/qinling
244 - openstack/requirements
245 - openstack/sahara-tests
246 - openstack/senlin
247 - openstack/senlin-tempest-plugin
248 - openstack/tap-as-a-service
249 - openstack/tempest-horizon
250 - openstack/trio2o
251 - openstack/trove
252 - openstack/valet
253 - openstack/vitrage
254 - openstack/vmware-nsx-tempest-plugin
255 - openstack/watcher-tempest-plugin
256 - openstack/zaqar-tempest-plugin
257 - openstack/zun-tempest-plugin
258
ghanshyam1afb44b2018-05-25 00:53:48 +0300259- job:
260 name: tempest-cinder-v2-api
261 parent: devstack-tempest
262 branches:
263 - master
264 description: |
265 This job runs the cinder API test against v2 endpoint.
266 vars:
267 tox_envlist: all
268 tempest_test_regex: api.*volume
269 devstack_localrc:
270 TEMPEST_VOLUME_TYPE: volumev2
271
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100272- project:
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100273 check:
274 jobs:
275 - devstack-tempest:
276 files:
277 - ^playbooks/
278 - ^roles/
279 - ^.zuul.yaml$
Matt Riedemannda80cc92018-01-25 11:23:52 -0500280 - nova-multiattach
Attila Fazekas3f219f52018-03-01 16:50:10 +0000281 - tempest-full-parallel:
282 irrelevant-files:
283 - ^(test-|)requirements.txt$
284 - ^.*\.rst$
285 - ^doc/.*$
286 - ^etc/.*$
287 - ^releasenotes/.*$
288 - ^setup.cfg$
289 - ^tempest/hacking/.*$
290 - ^tempest/tests/.*$
Jens Harbottff03e222018-02-26 10:54:48 +0000291 - tempest-full-py36:
292 irrelevant-files:
293 - ^(test-|)requirements.txt$
294 - ^.*\.rst$
295 - ^doc/.*$
296 - ^etc/.*$
297 - ^releasenotes/.*$
298 - ^setup.cfg$
299 - ^tempest/hacking/.*$
300 - ^tempest/tests/.*$
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000301 - tempest-full-queens:
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000302 irrelevant-files:
303 - ^(test-|)requirements.txt$
304 - ^.*\.rst$
305 - ^doc/.*$
306 - ^etc/.*$
307 - ^releasenotes/.*$
308 - ^setup.cfg$
309 - ^tempest/hacking/.*$
310 - ^tempest/tests/.*$
311 - tempest-full-queens-py3:
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000312 irrelevant-files:
313 - ^(test-|)requirements.txt$
314 - ^.*\.rst$
315 - ^doc/.*$
316 - ^etc/.*$
317 - ^releasenotes/.*$
318 - ^setup.cfg$
319 - ^tempest/hacking/.*$
320 - ^tempest/tests/.*$
Andrea Frittoli1c2a8022018-02-20 15:58:13 +0000321 - tempest-full-pike:
322 irrelevant-files:
323 - ^(test-|)requirements.txt$
324 - ^.*\.rst$
325 - ^doc/.*$
326 - ^etc/.*$
327 - ^releasenotes/.*$
328 - ^setup.cfg$
329 - ^tempest/hacking/.*$
330 - ^tempest/tests/.*$
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000331 - tempest-multinode-full:
332 irrelevant-files:
333 - ^(test-|)requirements.txt$
334 - ^.*\.rst$
335 - ^doc/.*$
336 - ^etc/.*$
337 - ^releasenotes/.*$
338 - ^setup.cfg$
339 - ^tempest/hacking/.*$
340 - ^tempest/tests/.*$
Chandan Kumarcf576b22017-10-23 17:43:36 +0530341 - tempest-tox-plugin-sanity-check
ghanshyam8db07072018-06-19 09:42:00 +0000342 - tempest-scenario-all:
ghanshyam402df092018-05-14 01:29:04 +0000343 irrelevant-files:
344 - ^(test-|)requirements.txt$
345 - ^.*\.rst$
346 - ^doc/.*$
347 - ^etc/.*$
348 - ^releasenotes/.*$
349 - ^setup.cfg$
350 - ^tempest/hacking/.*$
351 - ^tempest/tests/.*$
ghanshyam8db07072018-06-19 09:42:00 +0000352 - ^tempest/api/.*$
Matt Riedemann44f666b2018-03-05 10:08:13 -0500353 - nova-cells-v1:
354 irrelevant-files:
355 - ^(test-|)requirements.txt$
356 - ^.*\.rst$
357 - ^doc/.*$
358 - ^etc/.*$
359 - ^releasenotes/.*$
360 - ^setup.cfg$
361 - ^tempest/hacking/.*$
362 - ^tempest/tests/.*$
melanie witt591fe212018-05-01 22:56:00 +0000363 - nova-live-migration:
ghanshyam14446062018-05-14 01:37:26 +0000364 voting: false
melanie witt591fe212018-05-01 22:56:00 +0000365 irrelevant-files:
366 - ^(test-|)requirements.txt$
367 - ^.*\.rst$
368 - ^doc/.*$
369 - ^etc/.*$
370 - ^releasenotes/.*$
371 - ^setup.cfg$
372 - ^tempest/hacking/.*$
373 - ^tempest/tests/.*$
ghanshyam14446062018-05-14 01:37:26 +0000374 gate:
375 jobs:
376 - nova-multiattach
ghanshyam8db07072018-06-19 09:42:00 +0000377 - tempest-scenario-all:
378 irrelevant-files:
379 - ^(test-|)requirements.txt$
380 - ^.*\.rst$
381 - ^doc/.*$
382 - ^etc/.*$
383 - ^releasenotes/.*$
384 - ^setup.cfg$
385 - ^tempest/hacking/.*$
386 - ^tempest/tests/.*$
387 - ^tempest/api/.*$
ghanshyam14446062018-05-14 01:37:26 +0000388 experimental:
389 jobs:
ghanshyam1afb44b2018-05-25 00:53:48 +0300390 - tempest-cinder-v2-api:
391 irrelevant-files:
392 - ^(test-|)requirements.txt$
393 - ^.*\.rst$
394 - ^doc/.*$
395 - ^etc/.*$
396 - ^releasenotes/.*$
397 - ^setup.cfg$
398 - ^tempest/hacking/.*$
399 - ^tempest/tests/.*$
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000400 periodic-stable:
401 jobs:
402 - tempest-full-queens
403 - tempest-full-queens-py3
Andrea Frittoli1c2a8022018-02-20 15:58:13 +0000404 - tempest-full-pike