blob: 2bcbc85d0d312094ab3cab7d37be2d04999039a0 [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 description: |
5 Base Tempest job.
6
7 This Tempest job provides the base for both the single and multi-node
8 test setup. To run a multi-node test inherit from devstack-tempest and
9 set the nodeset to a multi-node one.
Ghanshyama0b8ca42019-07-17 09:46:41 +000010 required-projects: &base_required-projects
OpenDev Sysadmins682965e2019-04-19 19:29:35 +000011 - opendev.org/openstack/tempest
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010012 timeout: 7200
Ghanshyama0b8ca42019-07-17 09:46:41 +000013 roles: &base_roles
OpenDev Sysadmins682965e2019-04-19 19:29:35 +000014 - zuul: opendev.org/openstack/devstack
Ghanshyama0b8ca42019-07-17 09:46:41 +000015 vars: &base_vars
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010016 devstack_services:
James E. Blaird5980092018-01-24 16:43:27 -080017 tempest: true
Andrea Frittoli688f36e2018-02-18 22:27:34 +000018 devstack_local_conf:
19 test-config:
20 $TEMPEST_CONFIG:
21 compute:
22 min_compute_nodes: "{{ groups['compute'] | default(['controller']) | length }}"
Doug Hellmann6db0b782018-09-08 22:53:21 -040023 test_results_stage_name: test_results
Andrea Frittoli4c24a1a2018-01-31 22:21:07 +000024 zuul_copy_output:
Doug Hellmann6db0b782018-09-08 22:53:21 -040025 '{{ devstack_base_dir }}/tempest/etc/tempest.conf': logs
26 '{{ devstack_base_dir }}/tempest/etc/accounts.yaml': logs
27 '{{ devstack_base_dir }}/tempest/tempest.log': logs
28 '{{ stage_dir }}/{{ test_results_stage_name }}.subunit': logs
29 '{{ stage_dir }}/{{ test_results_stage_name }}.html': logs
30 '{{ stage_dir }}/stackviz': logs
Andrea Frittoli4c24a1a2018-01-31 22:21:07 +000031 extensions_to_txt:
Doug Hellmann6db0b782018-09-08 22:53:21 -040032 conf: true
33 log: true
34 yaml: true
35 yml: true
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010036 run: playbooks/devstack-tempest.yaml
Andrea Frittoli (andreaf)74810552017-10-03 18:56:56 +010037 post-run: playbooks/post-tempest.yaml
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010038
Chandan Kumarcf576b22017-10-23 17:43:36 +053039- job:
Andreas Jaegerd6e04742018-10-11 20:54:18 +020040 name: tempest-all
41 parent: devstack-tempest
42 description: |
43 Integration test that runs all tests.
44 Former name for this job was:
45 * legacy-periodic-tempest-dsvm-all-master
46 vars:
47 tox_envlist: all
48 tempest_test_regex: tempest
49 devstack_localrc:
50 ENABLE_FILE_INJECTION: true
51
52- job:
Andreas Jaegerdbf8a132018-10-14 20:18:27 +020053 name: devstack-tempest-ipv6
54 parent: devstack-ipv6
Andreas Jaegerdbf8a132018-10-14 20:18:27 +020055 description: |
Ghanshyama0b8ca42019-07-17 09:46:41 +000056 Base Tempest IPv6 job. This job is derived from 'devstack-ipv6'
57 which set the IPv6-only setting for OpenStack services. As part of
58 run phase, this job will verify the IPv6 setting and check the services
59 endpoints and listen addresses are IPv6. Basically it will run the script
60 ./tool/verify-ipv6-only-deployments.sh
61
62 Child jobs of this job can run their own set of tests and can
63 add post-run playebooks to extend the IPv6 verification specific
64 to their deployed services.
65 Check the wiki page for more details about project jobs setup
66 - https://wiki.openstack.org/wiki/Goal-IPv6-only-deployments-and-testing
67 required-projects: *base_required-projects
Andreas Jaegerdbf8a132018-10-14 20:18:27 +020068 timeout: 7200
Ghanshyama0b8ca42019-07-17 09:46:41 +000069 roles: *base_roles
70 vars: *base_vars
71 run: playbooks/devstack-tempest-ipv6.yaml
Andreas Jaegerdbf8a132018-10-14 20:18:27 +020072 post-run: playbooks/post-tempest.yaml
73
74- job:
Ghanshyama0b8ca42019-07-17 09:46:41 +000075 name: tempest-ipv6-only
76 parent: devstack-tempest-ipv6
77 # This currently works from stable/pike on.
78 branches: ^(?!stable/ocata).*$
79 description: |
80 Integration test of IPv6-only deployments. This job runs
81 smoke and IPv6 relates tests only. Basic idea is to test
82 whether OpenStack Services listen on IPv6 addrress or not.
83 vars:
84 tox_envlist: ipv6-only
85
86- job:
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000087 name: tempest-full
88 parent: devstack-tempest
Andrea Frittoli1c2a8022018-02-20 15:58:13 +000089 # This currently works from stable/pike on.
Matt Riedemann55e00652018-09-11 17:50:25 -040090 # Before stable/pike, legacy version of tempest-full
91 # 'legacy-tempest-dsvm-neutron-full' run.
92 branches: ^(?!stable/ocata).*$
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000093 description: |
94 Base integration test with Neutron networking and py27.
95 Former names for this job where:
96 * legacy-tempest-dsvm-neutron-full
97 * gate-tempest-dsvm-neutron-full-ubuntu-xenial
98 vars:
Andreas Jaegerba2f4792018-01-12 16:48:52 +010099 tox_envlist: full
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +0000100 devstack_localrc:
James E. Blaird5980092018-01-24 16:43:27 -0800101 ENABLE_FILE_INJECTION: true
Matt Riedemann7581e992018-10-01 11:33:34 -0400102 ENABLE_VOLUME_MULTIATTACH: true
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +0000103
104- job:
Andreas Jaegera8f64e32018-10-14 20:18:27 +0200105 name: tempest-full-oslo-master
106 parent: tempest-full
107 description: |
108 Integration test using current git of oslo libs.
109 This ensures that when oslo libs get released that they
110 do not break OpenStack server projects.
111
112 Former name for this job was
113 periodic-tempest-dsvm-oslo-latest-full-master.
114 timeout: 10800
115 required-projects:
OpenDev Sysadmins682965e2019-04-19 19:29:35 +0000116 - opendev.org/openstack/oslo.cache
117 - opendev.org/openstack/oslo.concurrency
118 - opendev.org/openstack/oslo.config
119 - opendev.org/openstack/oslo.context
120 - opendev.org/openstack/oslo.db
121 - opendev.org/openstack/oslo.i18n
122 - opendev.org/openstack/oslo.log
123 - opendev.org/openstack/oslo.messaging
124 - opendev.org/openstack/oslo.middleware
125 - opendev.org/openstack/oslo.policy
126 - opendev.org/openstack/oslo.privsep
127 - opendev.org/openstack/oslo.reports
128 - opendev.org/openstack/oslo.rootwrap
129 - opendev.org/openstack/oslo.serialization
130 - opendev.org/openstack/oslo.service
131 - opendev.org/openstack/oslo.utils
132 - opendev.org/openstack/oslo.versionedobjects
133 - opendev.org/openstack/oslo.vmware
Andreas Jaegera8f64e32018-10-14 20:18:27 +0200134
135- job:
Attila Fazekas3f219f52018-03-01 16:50:10 +0000136 name: tempest-full-parallel
137 parent: tempest-full
138 voting: false
139 branches:
140 - master
141 description: |
142 Base integration test with Neutron networking and py27.
143 It includes all scenarios as it was in the past.
144 This job runs all scenario tests in parallel!
145 vars:
146 tox_envlist: full-parallel
147
148- job:
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000149 name: tempest-full-py3
Andrea Frittoli85076bd2018-01-24 10:19:40 +0000150 parent: devstack-tempest
Matt Riedemann55e00652018-09-11 17:50:25 -0400151 # This currently works from stable/pike on.
152 # Before stable/pike, legacy version of tempest-full
153 # 'legacy-tempest-dsvm-neutron-full' run.
154 branches: ^(?!stable/ocata).*$
Andrea Frittoli85076bd2018-01-24 10:19:40 +0000155 description: |
156 Base integration test with Neutron networking and py3.
157 Former names for this job where:
158 * legacy-tempest-dsvm-py35
159 * gate-tempest-dsvm-py35
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000160 vars:
Andrea Frittoli85076bd2018-01-24 10:19:40 +0000161 tox_envlist: full
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000162 devstack_localrc:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400163 USE_PYTHON3: true
164 FORCE_CONFIG_DRIVE: true
Matt Riedemann7581e992018-10-01 11:33:34 -0400165 ENABLE_VOLUME_MULTIATTACH: true
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000166 devstack_services:
167 s-account: false
168 s-container: false
169 s-object: false
170 s-proxy: false
171 # without Swift, c-bak cannot run (in the Gate at least)
172 c-bak: false
173
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000174- job:
Ghanshyam5072a242019-07-03 14:40:53 +0000175 name: tempest-integrated-networking
176 parent: devstack-tempest
177 branches: ^(?!stable/ocata).*$
178 description: |
179 This job runs integration tests for networking. This is subset of
180 'tempest-full' job and run only Neutron and Nova related tests.
181 This is meant to be run on neutron gate only.
182 vars:
183 tox_envlist: integrated-network
184 devstack_localrc:
185 USE_PYTHON3: true
186 FORCE_CONFIG_DRIVE: true
187 devstack_services:
188 s-account: false
189 s-container: false
190 s-object: false
191 s-proxy: false
192 c-bak: false
193
194- job:
Ghanshyamee7fd1f2019-07-05 09:36:57 +0000195 name: tempest-integrated-compute
196 parent: devstack-tempest
197 branches: ^(?!stable/ocata).*$
198 description: |
199 This job runs integration tests for compute. This is
200 subset of 'tempest-full' job and run Nova, Neutron, Cinder (except backup tests)
201 and Glance related tests. This is meant to be run on Nova gate only.
202 vars:
203 tox_envlist: integrated-compute
204 devstack_localrc:
205 USE_PYTHON3: true
206 FORCE_CONFIG_DRIVE: true
207 ENABLE_VOLUME_MULTIATTACH: true
208 devstack_services:
209 s-account: false
210 s-container: false
211 s-object: false
212 s-proxy: false
213 c-bak: false
214
215- job:
Ghanshyam31609dc2019-07-05 09:23:37 +0000216 name: tempest-integrated-placement
217 parent: devstack-tempest
218 branches: ^(?!stable/ocata).*$
219 description: |
220 This job runs integration tests for placement. This is
221 subset of 'tempest-full' job and run Nova and Neutron
222 related tests. This is meant to be run on Placement gate only.
223 vars:
224 tox_envlist: integrated-placement
225 devstack_localrc:
226 USE_PYTHON3: true
227 FORCE_CONFIG_DRIVE: true
228 ENABLE_VOLUME_MULTIATTACH: true
229 devstack_services:
230 s-account: false
231 s-container: false
232 s-object: false
233 s-proxy: false
234 c-bak: false
235
236- job:
Ghanshyam Manna6994452019-07-05 08:43:23 +0000237 name: tempest-integrated-storage
238 parent: devstack-tempest
239 branches: ^(?!stable/ocata).*$
240 description: |
241 This job runs integration tests for image & block storage. This is
242 subset of 'tempest-full' job and run Cinder, Glance, Swift and Nova
243 related tests. This is meant to be run on Cinder and Glance gate only.
244 vars:
245 tox_envlist: integrated-storage
246 devstack_localrc:
247 USE_PYTHON3: true
248 FORCE_CONFIG_DRIVE: true
249 ENABLE_VOLUME_MULTIATTACH: true
250
251- job:
Ghanshyam95358522019-07-05 08:58:32 +0000252 name: tempest-integrated-object-storage
253 parent: devstack-tempest
254 branches: ^(?!stable/ocata).*$
255 description: |
256 This job runs integration tests for object storage. This is
257 subset of 'tempest-full' job and run Swift, Cinder and Glance
258 related tests. This is meant to be run on Swift gate only.
259 vars:
260 tox_envlist: integrated-object-storage
261 devstack_localrc:
262 # NOTE(gmann): swift is not ready on python3 yet and devstack
263 # install it on python2.7 only. But settting the USE_PYTHON3
264 # for future once swift is ready on py3.
265 USE_PYTHON3: true
266
267- job:
Andreas Jaegerdbf8a132018-10-14 20:18:27 +0200268 name: tempest-full-py3-ipv6
269 parent: devstack-tempest-ipv6
270 # This currently works from stable/pike on.
271 # Before stable/pike, legacy version of tempest-full
272 # 'legacy-tempest-dsvm-neutron-full' run.
273 branches: ^(?!stable/ocata).*$
274 description: |
275 Base integration test with Neutron networking, IPv6 and py3.
276 vars:
277 tox_envlist: full
278 devstack_localrc:
279 USE_PYTHON3: true
280 FORCE_CONFIG_DRIVE: true
281 devstack_services:
282 s-account: false
283 s-container: false
284 s-object: false
285 s-proxy: false
286 # without Swift, c-bak cannot run (in the Gate at least)
287 c-bak: false
288
289- job:
ghanshyam42c9a8d2018-10-16 12:01:48 +0000290 name: tempest-multinode-full-base
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000291 parent: devstack-tempest
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000292 description: |
293 Base multinode integration test with Neutron networking and py27.
Felipe Monteiro99585f32018-07-08 17:59:43 -0400294 Former names for this job were:
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000295 * neutron-tempest-multinode-full
296 * legacy-tempest-dsvm-neutron-multinode-full
297 * gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv
298 This job includes two nodes, controller / tempest plus a subnode, but
299 it can be used with different topologies, as long as a controller node
300 and a tempest one exist.
Andrea Frittoli372bfd32018-06-18 13:03:40 +0200301 timeout: 10800
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000302 vars:
303 tox_envlist: full
304 devstack_localrc:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400305 FORCE_CONFIG_DRIVE: false
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000306 NOVA_ALLOW_MOVE_TO_SAME_HOST: false
307 LIVE_MIGRATION_AVAILABLE: true
308 USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true
309 group-vars:
310 peers:
311 devstack_localrc:
312 NOVA_ALLOW_MOVE_TO_SAME_HOST: false
313 LIVE_MIGRATION_AVAILABLE: true
314 USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true
315
Slawek Kaplonski0df2f912019-01-30 16:45:57 +0100316- job:
ghanshyam42c9a8d2018-10-16 12:01:48 +0000317 name: tempest-multinode-full
318 parent: tempest-multinode-full-base
319 nodeset: openstack-two-node-bionic
320 # This job runs on Bionic from stable/stein on.
321 branches: ^(?!stable/(ocata|pike|queens|rocky)).*$
322
323- job:
324 name: tempest-multinode-full
325 parent: tempest-multinode-full-base
326 nodeset: openstack-two-node-xenial
327 # This job runs on Xenial and this is for stable/pike, stable/queens
328 # and stable/rocky. This job is prepared to make sure all stable branches
329 # before stable/stein will keep running on xenial. This job can be
330 # removed once stable/rocky is EOL.
331 branches:
332 - stable/pike
333 - stable/queens
334 - stable/rocky
335
336- job:
Slawek Kaplonski0df2f912019-01-30 16:45:57 +0100337 name: tempest-multinode-full-py3
338 parent: tempest-multinode-full
339 vars:
340 devstack_localrc:
341 USE_PYTHON3: true
342
Andreas Jaeger20c181a2018-10-10 13:44:40 +0200343- job:
344 name: tempest-full-py3-opensuse150
345 parent: tempest-full-py3
ghanshyama066fcd2019-03-07 17:34:11 +0000346 nodeset: devstack-single-node-opensuse-150
Andreas Jaeger20c181a2018-10-10 13:44:40 +0200347 description: |
Dirk Muellerf3522412019-09-18 11:12:07 +0200348 ** DEPRECATED - please use tempest-full-py3-opensuse15 instead.
349 voting: false
350
351- job:
352 name: tempest-full-py3-opensuse15
353 parent: tempest-full-py3
354 nodeset: devstack-single-node-opensuse-15
355 description: |
Andreas Jaeger20c181a2018-10-10 13:44:40 +0200356 Base integration test with Neutron networking and py36 running
Dirk Muellerf3522412019-09-18 11:12:07 +0200357 on openSUSE Leap 15.x
Andreas Jaeger20c181a2018-10-10 13:44:40 +0200358 voting: false
359
ghanshyam402df092018-05-14 01:29:04 +0000360- job:
ghanshyam10326c72018-08-01 08:53:00 +0000361 name: tempest-slow
Felipe Monteiro99585f32018-07-08 17:59:43 -0400362 parent: tempest-multinode-full
ghanshyama3c5a792018-05-14 12:31:27 +0000363 description: |
ghanshyam10326c72018-08-01 08:53:00 +0000364 This multinode integration job will run all the tests tagged as slow.
365 It enables the lvm multibackend setup to cover few scenario tests.
Andreas Jaegerd6e04742018-10-11 20:54:18 +0200366 This job will run only slow tests (API or Scenario) serially.
Felipe Monteiro99585f32018-07-08 17:59:43 -0400367
368 Former names for this job were:
369 * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend
370 * tempest-scenario-multinode-lvm-multibackend
ghanshyam402df092018-05-14 01:29:04 +0000371 timeout: 10800
Felipe Monteiro99585f32018-07-08 17:59:43 -0400372 vars:
ghanshyam10326c72018-08-01 08:53:00 +0000373 tox_envlist: slow-serial
Felipe Monteiro99585f32018-07-08 17:59:43 -0400374 devstack_localrc:
375 CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2
Matt Riedemann7581e992018-10-01 11:33:34 -0400376 ENABLE_VOLUME_MULTIATTACH: true
Lajos Katonac87a06b2019-01-04 13:21:48 +0100377 devstack_plugins:
378 neutron: https://opendev.org/openstack/neutron
379 devstack_services:
380 neutron-placement: true
381 neutron-qos: true
382 devstack_local_conf:
383 post-config:
384 "/$NEUTRON_CORE_PLUGIN_CONF":
385 ovs:
386 bridge_mappings: public:br-ex
387 resource_provider_bandwidths: br-ex:1000000:1000000
388 test-config:
389 $TEMPEST_CONFIG:
390 network-feature-enabled:
391 qos_placement_physnet: public
Felipe Monteiro99585f32018-07-08 17:59:43 -0400392 tempest_concurrency: 2
Matt Riedemann3858ced2019-03-13 10:18:08 -0400393 group-vars:
394 # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both
395 # the controller and subnode prior to Rocky so we have to make sure the
396 # variable is set in both locations.
397 subnode:
398 devstack_localrc:
399 ENABLE_VOLUME_MULTIATTACH: true
ghanshyam402df092018-05-14 01:29:04 +0000400
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000401- job:
Slawek Kaplonskie5d93a42019-01-30 16:49:59 +0100402 name: tempest-slow-py3
403 parent: tempest-slow
404 vars:
405 devstack_localrc:
406 USE_PYTHON3: true
407 devstack_services:
408 s-account: false
409 s-container: false
410 s-object: false
411 s-proxy: false
412 # without Swift, c-bak cannot run (in the Gate at least)
413 c-bak: false
414
415- job:
Ghanshyam Mann910f9c52019-10-04 17:30:00 +0000416 name: tempest-full-train
417 parent: tempest-full
418 override-checkout: stable/train
419
420- job:
421 name: tempest-full-train-py3
422 parent: tempest-full-py3
423 override-checkout: stable/train
424
425- job:
ghanshyam5b985922019-03-26 19:56:31 +0000426 name: tempest-full-stein
427 parent: tempest-full
428 override-checkout: stable/stein
429
430- job:
431 name: tempest-full-stein-py3
432 parent: tempest-full-py3
433 override-checkout: stable/stein
434
435- job:
ghanshyamfbde01e2018-08-24 10:54:53 +0000436 name: tempest-full-rocky
437 parent: tempest-full
ghanshyamf9a4c772018-11-15 13:29:19 +0000438 nodeset: openstack-single-node-xenial
ghanshyamfbde01e2018-08-24 10:54:53 +0000439 override-checkout: stable/rocky
440
441- job:
442 name: tempest-full-rocky-py3
443 parent: tempest-full-py3
ghanshyamf9a4c772018-11-15 13:29:19 +0000444 nodeset: openstack-single-node-xenial
ghanshyamfbde01e2018-08-24 10:54:53 +0000445 override-checkout: stable/rocky
446
447- job:
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000448 name: tempest-full-queens
449 parent: tempest-full
ghanshyamf9a4c772018-11-15 13:29:19 +0000450 nodeset: openstack-single-node-xenial
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000451 override-checkout: stable/queens
452
453- job:
454 name: tempest-full-queens-py3
455 parent: tempest-full-py3
ghanshyamf9a4c772018-11-15 13:29:19 +0000456 nodeset: openstack-single-node-xenial
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000457 override-checkout: stable/queens
458
459- job:
Chandan Kumarcf576b22017-10-23 17:43:36 +0530460 name: tempest-tox-plugin-sanity-check
461 parent: tox
462 description: |
463 Run tempest plugin sanity check script using tox.
ghanshyam28edda62019-03-07 17:46:11 +0000464 nodeset: ubuntu-bionic
Chandan Kumarcf576b22017-10-23 17:43:36 +0530465 vars:
466 tox_envlist: plugin-sanity-check
Chandan Kumarcf576b22017-10-23 17:43:36 +0530467 timeout: 5000
Chandan Kumarcf576b22017-10-23 17:43:36 +0530468
ghanshyam1afb44b2018-05-25 00:53:48 +0300469- job:
470 name: tempest-cinder-v2-api
471 parent: devstack-tempest
472 branches:
473 - master
474 description: |
475 This job runs the cinder API test against v2 endpoint.
476 vars:
477 tox_envlist: all
478 tempest_test_regex: api.*volume
479 devstack_localrc:
480 TEMPEST_VOLUME_TYPE: volumev2
481
Jens Harbott4e071552018-07-05 12:24:51 +0000482- job:
483 name: tempest-full-test-account-py3
484 parent: tempest-full-py3
485 description: |
486 This job runs the full set of tempest tests using pre-provisioned
487 credentials instead of dynamic credentials and py3.
488 Former names for this job were:
489 - legacy-tempest-dsvm-full-test-accounts
490 - legacy-tempest-dsvm-neutron-full-test-accounts
491 - legacy-tempest-dsvm-identity-v3-test-accounts
492 vars:
493 devstack_localrc:
494 TEMPEST_USE_TEST_ACCOUNTS: True
495
496- job:
497 name: tempest-full-test-account-no-admin-py3
498 parent: tempest-full-test-account-py3
499 description: |
500 This job runs the full set of tempest tests using pre-provisioned
501 credentials and py3 without having an admin account.
502 Former name for this job was:
503 - legacy-tempest-dsvm-neutron-full-non-admin
504
505 vars:
506 devstack_localrc:
507 TEMPEST_HAS_ADMIN: False
508
Andreas Jaeger390e4fa2018-10-10 21:53:12 +0200509- job:
510 name: tempest-pg-full
511 parent: tempest-full
512 description: |
513 Base integration test with Neutron networking and py27 and PostgreSQL.
514 Former name for this job was legacy-tempest-dsvm-neutron-pg-full.
515 vars:
516 devstack_localrc:
517 ENABLE_FILE_INJECTION: true
518 DATABASE_TYPE: postgresql
519
Ghanshyam5072a242019-07-03 14:40:53 +0000520- project-template:
521 name: integrated-gate-networking
522 description: |
523 Run the python3 Tempest network integration tests (Nova and Neutron related)
524 in check and gate for the neutron integrated gate. This is meant to be
525 run on neutron gate only.
526 check:
527 jobs:
528 - grenade-py3
529 - tempest-integrated-networking
530 gate:
531 jobs:
532 - grenade-py3
533 - tempest-integrated-networking
534
Ghanshyam Manna6994452019-07-05 08:43:23 +0000535- project-template:
Ghanshyamee7fd1f2019-07-05 09:36:57 +0000536 name: integrated-gate-compute
537 description: |
538 Run the python3 Tempest compute integration tests
539 (Nova, Neutron, Cinder and Glance related) in check and gate
540 for the Nova integrated gate. This is meant to be
541 run on Nova gate only.
542 check:
543 jobs:
544 - grenade-py3
545 - tempest-integrated-compute
546 gate:
547 jobs:
548 - grenade-py3
549 - tempest-integrated-compute
550
551- project-template:
Ghanshyam31609dc2019-07-05 09:23:37 +0000552 name: integrated-gate-placement
553 description: |
554 Run the python3 Tempest placement integration tests
555 (Nova and Neutron related) in check and gate
556 for the Placement integrated gate. This is meant to be
557 run on Placement gate only.
558 check:
559 jobs:
560 - grenade-py3
561 - tempest-integrated-placement
562 gate:
563 jobs:
564 - grenade-py3
565 - tempest-integrated-placement
566
567- project-template:
Ghanshyam Manna6994452019-07-05 08:43:23 +0000568 name: integrated-gate-storage
569 description: |
570 Run the python3 Tempest image & block storage integration tests
571 (Cinder, Glance, Swift and Nova related) in check and gate
572 for the neutron integrated gate. This is meant to be
573 run on Cinder and Glance gate only.
574 check:
575 jobs:
576 - grenade-py3
577 - tempest-integrated-storage
578 gate:
579 jobs:
580 - grenade-py3
581 - tempest-integrated-storage
582
Ghanshyam95358522019-07-05 08:58:32 +0000583- project-template:
584 name: integrated-gate-object-storage
585 description: |
586 Run the python3 Tempest object storage integration tests
587 (Swift, Cinder and Glance related) in check and gate
588 for the swift integrated gate. This is meant to be
589 run on swift gate only.
590 check:
591 jobs:
592 - grenade-py3
593 - tempest-integrated-object-storage
594 gate:
595 jobs:
596 - grenade-py3
597 - tempest-integrated-object-storage
598
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100599- project:
Felipe Monteiro5277c202018-08-19 17:11:33 +0100600 templates:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400601 - check-requirements
602 - integrated-gate
ghanshyamb294a172018-12-19 04:06:36 +0000603 - integrated-gate-py3
Andreas Jaeger015a0062018-09-09 06:03:08 +0200604 - openstack-cover-jobs
Doug Hellmann6db0b782018-09-08 22:53:21 -0400605 - openstack-python-jobs
606 - openstack-python35-jobs
Corey Bryant7409c722019-07-05 15:55:32 -0400607 - openstack-python3-train-jobs
Doug Hellmann5f4c55d2018-09-08 22:54:05 -0400608 - publish-openstack-docs-pti
609 - release-notes-jobs-python3
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100610 check:
611 jobs:
612 - devstack-tempest:
613 files:
614 - ^playbooks/
615 - ^roles/
616 - ^.zuul.yaml$
Andreas Jaegerdbf8a132018-10-14 20:18:27 +0200617 - devstack-tempest-ipv6:
618 voting: false
619 files:
620 - ^playbooks/
621 - ^roles/
622 - ^.zuul.yaml$
Matt Riedemann7581e992018-10-01 11:33:34 -0400623 - tempest-full-parallel:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200624 # Define list of irrelevant files to use everywhere else
625 irrelevant-files: &tempest-irrelevant-files
Felipe Monteiroec1b1112018-07-18 19:23:37 -0400626 - ^.*\.rst$
627 - ^doc/.*$
628 - ^etc/.*$
629 - ^releasenotes/.*$
630 - ^setup.cfg$
631 - ^tempest/hacking/.*$
632 - ^tempest/tests/.*$
Felipe Monteiro2dc72172018-11-03 18:41:04 -0400633 - ^tools/.*$
Masayuki Igawa3044a292019-09-17 15:30:54 +0900634 - ^.coveragerc$
635 - ^.gitignore$
636 - ^.gitreview$
637 - ^.mailmap$
Masayuki Igawa47b14372018-10-16 14:58:52 +0900638 - tempest-full-py3:
639 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegerdbf8a132018-10-14 20:18:27 +0200640 - tempest-full-py3-ipv6:
641 voting: false
642 irrelevant-files: *tempest-irrelevant-files
Ghanshyam Mann910f9c52019-10-04 17:30:00 +0000643 - tempest-full-train:
644 irrelevant-files: *tempest-irrelevant-files
645 - tempest-full-train-py3:
646 irrelevant-files: *tempest-irrelevant-files
ghanshyam5b985922019-03-26 19:56:31 +0000647 - tempest-full-stein:
648 irrelevant-files: *tempest-irrelevant-files
649 - tempest-full-stein-py3:
650 irrelevant-files: *tempest-irrelevant-files
ghanshyamfbde01e2018-08-24 10:54:53 +0000651 - tempest-full-rocky:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200652 irrelevant-files: *tempest-irrelevant-files
ghanshyamfbde01e2018-08-24 10:54:53 +0000653 - tempest-full-rocky-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200654 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000655 - tempest-full-queens:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200656 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000657 - tempest-full-queens-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200658 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000659 - tempest-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200660 irrelevant-files: *tempest-irrelevant-files
Slawek Kaplonski0df2f912019-01-30 16:45:57 +0100661 - tempest-multinode-full-py3:
662 irrelevant-files: *tempest-irrelevant-files
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500663 - tempest-tox-plugin-sanity-check:
Ghanshyama0b8ca42019-07-17 09:46:41 +0000664 irrelevant-files: &tempest-irrelevant-files-2
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500665 - ^.*\.rst$
666 - ^doc/.*$
667 - ^etc/.*$
668 - ^releasenotes/.*$
669 - ^setup.cfg$
670 - ^tempest/hacking/.*$
671 - ^tempest/tests/.*$
Masayuki Igawa3044a292019-09-17 15:30:54 +0900672 - ^.coveragerc$
673 - ^.gitignore$
674 - ^.gitreview$
675 - ^.mailmap$
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500676 # tools/ is not here since this relies on a script in tools/.
Ghanshyama0b8ca42019-07-17 09:46:41 +0000677 - tempest-ipv6-only:
678 irrelevant-files: *tempest-irrelevant-files-2
ghanshyam10326c72018-08-01 08:53:00 +0000679 - tempest-slow:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200680 irrelevant-files: *tempest-irrelevant-files
Slawek Kaplonskie5d93a42019-01-30 16:49:59 +0100681 - tempest-slow-py3:
682 irrelevant-files: *tempest-irrelevant-files
melanie witt591fe212018-05-01 22:56:00 +0000683 - nova-live-migration:
ghanshyam14446062018-05-14 01:37:26 +0000684 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200685 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400686 - neutron-grenade-multinode:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200687 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400688 - neutron-grenade:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200689 irrelevant-files: *tempest-irrelevant-files
ghanshyam109c4f12018-12-12 06:59:56 +0000690 - grenade-py3:
691 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegera9c528f2018-09-10 18:50:45 +0200692 - devstack-plugin-ceph-tempest:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400693 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200694 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400695 - puppet-openstack-integration-4-scenario001-tempest-centos-7:
696 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200697 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400698 - puppet-openstack-integration-4-scenario002-tempest-centos-7:
699 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200700 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400701 - puppet-openstack-integration-4-scenario003-tempest-centos-7:
702 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200703 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400704 - puppet-openstack-integration-4-scenario004-tempest-centos-7:
705 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200706 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400707 - neutron-tempest-dvr:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200708 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400709 - tempest-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200710 irrelevant-files: *tempest-irrelevant-files
ghanshyama9cc6c12018-10-05 02:58:05 +0000711 - interop-tempest-consistency:
ghanshyama9cc6c12018-10-05 02:58:05 +0000712 irrelevant-files: *tempest-irrelevant-files
Jens Harbott4e071552018-07-05 12:24:51 +0000713 - tempest-full-test-account-py3:
714 voting: false
715 irrelevant-files: *tempest-irrelevant-files
716 - tempest-full-test-account-no-admin-py3:
717 voting: false
718 irrelevant-files: *tempest-irrelevant-files
Masayuki Igawade1153b2019-07-30 18:02:07 +0900719 - openstack-tox-bashate
ghanshyam14446062018-05-14 01:37:26 +0000720 gate:
721 jobs:
Slawek Kaplonskie5d93a42019-01-30 16:49:59 +0100722 - tempest-slow-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200723 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400724 - neutron-grenade-multinode:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200725 irrelevant-files: *tempest-irrelevant-files
Andreas Jaeger01fd01a2018-10-10 21:28:25 +0200726 - tempest-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200727 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400728 - neutron-grenade:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200729 irrelevant-files: *tempest-irrelevant-files
ghanshyam109c4f12018-12-12 06:59:56 +0000730 - grenade-py3:
731 irrelevant-files: *tempest-irrelevant-files
Ghanshyama0b8ca42019-07-17 09:46:41 +0000732 - tempest-ipv6-only:
733 irrelevant-files: *tempest-irrelevant-files-2
ghanshyam14446062018-05-14 01:37:26 +0000734 experimental:
735 jobs:
ghanshyam1afb44b2018-05-25 00:53:48 +0300736 - tempest-cinder-v2-api:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200737 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegerd6e04742018-10-11 20:54:18 +0200738 - tempest-all:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200739 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400740 - legacy-tempest-dsvm-neutron-dvr-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200741 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400742 - neutron-tempest-dvr-ha-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200743 irrelevant-files: *tempest-irrelevant-files
ghanshyamac6224e2018-10-16 11:09:59 +0000744 - nova-tempest-v2-api:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200745 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400746 - legacy-tempest-dsvm-lvm-multibackend:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200747 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegera9c528f2018-09-10 18:50:45 +0200748 - devstack-plugin-ceph-tempest-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200749 irrelevant-files: *tempest-irrelevant-files
Andreas Jaeger390e4fa2018-10-10 21:53:12 +0200750 - tempest-pg-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200751 irrelevant-files: *tempest-irrelevant-files
Dirk Muellerf3522412019-09-18 11:12:07 +0200752 - tempest-full-py3-opensuse15:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200753 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000754 periodic-stable:
755 jobs:
Ghanshyam Mann910f9c52019-10-04 17:30:00 +0000756 - tempest-full-train
757 - tempest-full-train-py3
ghanshyam5b985922019-03-26 19:56:31 +0000758 - tempest-full-stein
759 - tempest-full-stein-py3
ghanshyamfbde01e2018-08-24 10:54:53 +0000760 - tempest-full-rocky
761 - tempest-full-rocky-py3
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000762 - tempest-full-queens
763 - tempest-full-queens-py3
Doug Hellmann6db0b782018-09-08 22:53:21 -0400764 periodic:
765 jobs:
Andreas Jaegerd6e04742018-10-11 20:54:18 +0200766 - tempest-all
Andreas Jaegera8f64e32018-10-14 20:18:27 +0200767 - tempest-full-oslo-master