blob: 191d4077e79493172973a3c73f3cbc5b353c0736 [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:
ghanshyam5b985922019-03-26 19:56:31 +0000416 name: tempest-full-stein
417 parent: tempest-full
418 override-checkout: stable/stein
419
420- job:
421 name: tempest-full-stein-py3
422 parent: tempest-full-py3
423 override-checkout: stable/stein
424
425- job:
ghanshyamfbde01e2018-08-24 10:54:53 +0000426 name: tempest-full-rocky
427 parent: tempest-full
ghanshyamf9a4c772018-11-15 13:29:19 +0000428 nodeset: openstack-single-node-xenial
ghanshyamfbde01e2018-08-24 10:54:53 +0000429 override-checkout: stable/rocky
430
431- job:
432 name: tempest-full-rocky-py3
433 parent: tempest-full-py3
ghanshyamf9a4c772018-11-15 13:29:19 +0000434 nodeset: openstack-single-node-xenial
ghanshyamfbde01e2018-08-24 10:54:53 +0000435 override-checkout: stable/rocky
436
437- job:
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000438 name: tempest-full-queens
439 parent: tempest-full
ghanshyamf9a4c772018-11-15 13:29:19 +0000440 nodeset: openstack-single-node-xenial
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000441 override-checkout: stable/queens
442
443- job:
444 name: tempest-full-queens-py3
445 parent: tempest-full-py3
ghanshyamf9a4c772018-11-15 13:29:19 +0000446 nodeset: openstack-single-node-xenial
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000447 override-checkout: stable/queens
448
449- job:
Chandan Kumarcf576b22017-10-23 17:43:36 +0530450 name: tempest-tox-plugin-sanity-check
451 parent: tox
452 description: |
453 Run tempest plugin sanity check script using tox.
ghanshyam28edda62019-03-07 17:46:11 +0000454 nodeset: ubuntu-bionic
Chandan Kumarcf576b22017-10-23 17:43:36 +0530455 vars:
456 tox_envlist: plugin-sanity-check
Chandan Kumarcf576b22017-10-23 17:43:36 +0530457 timeout: 5000
Chandan Kumarcf576b22017-10-23 17:43:36 +0530458
ghanshyam1afb44b2018-05-25 00:53:48 +0300459- job:
460 name: tempest-cinder-v2-api
461 parent: devstack-tempest
462 branches:
463 - master
464 description: |
465 This job runs the cinder API test against v2 endpoint.
466 vars:
467 tox_envlist: all
468 tempest_test_regex: api.*volume
469 devstack_localrc:
470 TEMPEST_VOLUME_TYPE: volumev2
471
Jens Harbott4e071552018-07-05 12:24:51 +0000472- job:
473 name: tempest-full-test-account-py3
474 parent: tempest-full-py3
475 description: |
476 This job runs the full set of tempest tests using pre-provisioned
477 credentials instead of dynamic credentials and py3.
478 Former names for this job were:
479 - legacy-tempest-dsvm-full-test-accounts
480 - legacy-tempest-dsvm-neutron-full-test-accounts
481 - legacy-tempest-dsvm-identity-v3-test-accounts
482 vars:
483 devstack_localrc:
484 TEMPEST_USE_TEST_ACCOUNTS: True
485
486- job:
487 name: tempest-full-test-account-no-admin-py3
488 parent: tempest-full-test-account-py3
489 description: |
490 This job runs the full set of tempest tests using pre-provisioned
491 credentials and py3 without having an admin account.
492 Former name for this job was:
493 - legacy-tempest-dsvm-neutron-full-non-admin
494
495 vars:
496 devstack_localrc:
497 TEMPEST_HAS_ADMIN: False
498
Andreas Jaeger390e4fa2018-10-10 21:53:12 +0200499- job:
500 name: tempest-pg-full
501 parent: tempest-full
502 description: |
503 Base integration test with Neutron networking and py27 and PostgreSQL.
504 Former name for this job was legacy-tempest-dsvm-neutron-pg-full.
505 vars:
506 devstack_localrc:
507 ENABLE_FILE_INJECTION: true
508 DATABASE_TYPE: postgresql
509
Ghanshyam5072a242019-07-03 14:40:53 +0000510- project-template:
511 name: integrated-gate-networking
512 description: |
513 Run the python3 Tempest network integration tests (Nova and Neutron related)
514 in check and gate for the neutron integrated gate. This is meant to be
515 run on neutron gate only.
516 check:
517 jobs:
518 - grenade-py3
519 - tempest-integrated-networking
520 gate:
521 jobs:
522 - grenade-py3
523 - tempest-integrated-networking
524
Ghanshyam Manna6994452019-07-05 08:43:23 +0000525- project-template:
Ghanshyamee7fd1f2019-07-05 09:36:57 +0000526 name: integrated-gate-compute
527 description: |
528 Run the python3 Tempest compute integration tests
529 (Nova, Neutron, Cinder and Glance related) in check and gate
530 for the Nova integrated gate. This is meant to be
531 run on Nova gate only.
532 check:
533 jobs:
534 - grenade-py3
535 - tempest-integrated-compute
536 gate:
537 jobs:
538 - grenade-py3
539 - tempest-integrated-compute
540
541- project-template:
Ghanshyam31609dc2019-07-05 09:23:37 +0000542 name: integrated-gate-placement
543 description: |
544 Run the python3 Tempest placement integration tests
545 (Nova and Neutron related) in check and gate
546 for the Placement integrated gate. This is meant to be
547 run on Placement gate only.
548 check:
549 jobs:
550 - grenade-py3
551 - tempest-integrated-placement
552 gate:
553 jobs:
554 - grenade-py3
555 - tempest-integrated-placement
556
557- project-template:
Ghanshyam Manna6994452019-07-05 08:43:23 +0000558 name: integrated-gate-storage
559 description: |
560 Run the python3 Tempest image & block storage integration tests
561 (Cinder, Glance, Swift and Nova related) in check and gate
562 for the neutron integrated gate. This is meant to be
563 run on Cinder and Glance gate only.
564 check:
565 jobs:
566 - grenade-py3
567 - tempest-integrated-storage
568 gate:
569 jobs:
570 - grenade-py3
571 - tempest-integrated-storage
572
Ghanshyam95358522019-07-05 08:58:32 +0000573- project-template:
574 name: integrated-gate-object-storage
575 description: |
576 Run the python3 Tempest object storage integration tests
577 (Swift, Cinder and Glance related) in check and gate
578 for the swift integrated gate. This is meant to be
579 run on swift gate only.
580 check:
581 jobs:
582 - grenade-py3
583 - tempest-integrated-object-storage
584 gate:
585 jobs:
586 - grenade-py3
587 - tempest-integrated-object-storage
588
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100589- project:
Felipe Monteiro5277c202018-08-19 17:11:33 +0100590 templates:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400591 - check-requirements
592 - integrated-gate
ghanshyamb294a172018-12-19 04:06:36 +0000593 - integrated-gate-py3
Andreas Jaeger015a0062018-09-09 06:03:08 +0200594 - openstack-cover-jobs
Doug Hellmann6db0b782018-09-08 22:53:21 -0400595 - openstack-python-jobs
596 - openstack-python35-jobs
Corey Bryant7409c722019-07-05 15:55:32 -0400597 - openstack-python3-train-jobs
Doug Hellmann5f4c55d2018-09-08 22:54:05 -0400598 - publish-openstack-docs-pti
599 - release-notes-jobs-python3
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100600 check:
601 jobs:
602 - devstack-tempest:
603 files:
604 - ^playbooks/
605 - ^roles/
606 - ^.zuul.yaml$
Andreas Jaegerdbf8a132018-10-14 20:18:27 +0200607 - devstack-tempest-ipv6:
608 voting: false
609 files:
610 - ^playbooks/
611 - ^roles/
612 - ^.zuul.yaml$
Matt Riedemann7581e992018-10-01 11:33:34 -0400613 - tempest-full-parallel:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200614 # Define list of irrelevant files to use everywhere else
615 irrelevant-files: &tempest-irrelevant-files
Felipe Monteiroec1b1112018-07-18 19:23:37 -0400616 - ^.*\.rst$
617 - ^doc/.*$
618 - ^etc/.*$
619 - ^releasenotes/.*$
620 - ^setup.cfg$
621 - ^tempest/hacking/.*$
622 - ^tempest/tests/.*$
Felipe Monteiro2dc72172018-11-03 18:41:04 -0400623 - ^tools/.*$
Masayuki Igawa3044a292019-09-17 15:30:54 +0900624 - ^.coveragerc$
625 - ^.gitignore$
626 - ^.gitreview$
627 - ^.mailmap$
Masayuki Igawa47b14372018-10-16 14:58:52 +0900628 - tempest-full-py3:
629 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegerdbf8a132018-10-14 20:18:27 +0200630 - tempest-full-py3-ipv6:
631 voting: false
632 irrelevant-files: *tempest-irrelevant-files
ghanshyam5b985922019-03-26 19:56:31 +0000633 - tempest-full-stein:
634 irrelevant-files: *tempest-irrelevant-files
635 - tempest-full-stein-py3:
636 irrelevant-files: *tempest-irrelevant-files
ghanshyamfbde01e2018-08-24 10:54:53 +0000637 - tempest-full-rocky:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200638 irrelevant-files: *tempest-irrelevant-files
ghanshyamfbde01e2018-08-24 10:54:53 +0000639 - tempest-full-rocky-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200640 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000641 - tempest-full-queens:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200642 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000643 - tempest-full-queens-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200644 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli688f36e2018-02-18 22:27:34 +0000645 - tempest-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200646 irrelevant-files: *tempest-irrelevant-files
Slawek Kaplonski0df2f912019-01-30 16:45:57 +0100647 - tempest-multinode-full-py3:
648 irrelevant-files: *tempest-irrelevant-files
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500649 - tempest-tox-plugin-sanity-check:
Ghanshyama0b8ca42019-07-17 09:46:41 +0000650 irrelevant-files: &tempest-irrelevant-files-2
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500651 - ^.*\.rst$
652 - ^doc/.*$
653 - ^etc/.*$
654 - ^releasenotes/.*$
655 - ^setup.cfg$
656 - ^tempest/hacking/.*$
657 - ^tempest/tests/.*$
Masayuki Igawa3044a292019-09-17 15:30:54 +0900658 - ^.coveragerc$
659 - ^.gitignore$
660 - ^.gitreview$
661 - ^.mailmap$
Felipe Monteiro68273ac2018-11-06 23:04:35 -0500662 # tools/ is not here since this relies on a script in tools/.
Ghanshyama0b8ca42019-07-17 09:46:41 +0000663 - tempest-ipv6-only:
664 irrelevant-files: *tempest-irrelevant-files-2
ghanshyam10326c72018-08-01 08:53:00 +0000665 - tempest-slow:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200666 irrelevant-files: *tempest-irrelevant-files
Slawek Kaplonskie5d93a42019-01-30 16:49:59 +0100667 - tempest-slow-py3:
668 irrelevant-files: *tempest-irrelevant-files
melanie witt591fe212018-05-01 22:56:00 +0000669 - nova-live-migration:
ghanshyam14446062018-05-14 01:37:26 +0000670 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200671 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400672 - neutron-grenade-multinode:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200673 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400674 - neutron-grenade:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200675 irrelevant-files: *tempest-irrelevant-files
ghanshyam109c4f12018-12-12 06:59:56 +0000676 - grenade-py3:
677 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegera9c528f2018-09-10 18:50:45 +0200678 - devstack-plugin-ceph-tempest:
Doug Hellmann6db0b782018-09-08 22:53:21 -0400679 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200680 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400681 - puppet-openstack-integration-4-scenario001-tempest-centos-7:
682 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200683 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400684 - puppet-openstack-integration-4-scenario002-tempest-centos-7:
685 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200686 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400687 - puppet-openstack-integration-4-scenario003-tempest-centos-7:
688 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200689 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400690 - puppet-openstack-integration-4-scenario004-tempest-centos-7:
691 voting: false
Andreas Jaegerff122de2018-09-23 17:18:49 +0200692 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400693 - neutron-tempest-dvr:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200694 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400695 - tempest-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200696 irrelevant-files: *tempest-irrelevant-files
ghanshyama9cc6c12018-10-05 02:58:05 +0000697 - interop-tempest-consistency:
ghanshyama9cc6c12018-10-05 02:58:05 +0000698 irrelevant-files: *tempest-irrelevant-files
Jens Harbott4e071552018-07-05 12:24:51 +0000699 - tempest-full-test-account-py3:
700 voting: false
701 irrelevant-files: *tempest-irrelevant-files
702 - tempest-full-test-account-no-admin-py3:
703 voting: false
704 irrelevant-files: *tempest-irrelevant-files
Masayuki Igawade1153b2019-07-30 18:02:07 +0900705 - openstack-tox-bashate
ghanshyam14446062018-05-14 01:37:26 +0000706 gate:
707 jobs:
Slawek Kaplonskie5d93a42019-01-30 16:49:59 +0100708 - tempest-slow-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200709 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400710 - neutron-grenade-multinode:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200711 irrelevant-files: *tempest-irrelevant-files
Andreas Jaeger01fd01a2018-10-10 21:28:25 +0200712 - tempest-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200713 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400714 - neutron-grenade:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200715 irrelevant-files: *tempest-irrelevant-files
ghanshyam109c4f12018-12-12 06:59:56 +0000716 - grenade-py3:
717 irrelevant-files: *tempest-irrelevant-files
Ghanshyama0b8ca42019-07-17 09:46:41 +0000718 - tempest-ipv6-only:
719 irrelevant-files: *tempest-irrelevant-files-2
ghanshyam14446062018-05-14 01:37:26 +0000720 experimental:
721 jobs:
ghanshyam1afb44b2018-05-25 00:53:48 +0300722 - tempest-cinder-v2-api:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200723 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegerd6e04742018-10-11 20:54:18 +0200724 - tempest-all:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200725 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400726 - legacy-tempest-dsvm-neutron-dvr-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200727 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400728 - neutron-tempest-dvr-ha-multinode-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200729 irrelevant-files: *tempest-irrelevant-files
ghanshyamac6224e2018-10-16 11:09:59 +0000730 - nova-tempest-v2-api:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200731 irrelevant-files: *tempest-irrelevant-files
Doug Hellmann6db0b782018-09-08 22:53:21 -0400732 - legacy-tempest-dsvm-lvm-multibackend:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200733 irrelevant-files: *tempest-irrelevant-files
Andreas Jaegera9c528f2018-09-10 18:50:45 +0200734 - devstack-plugin-ceph-tempest-py3:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200735 irrelevant-files: *tempest-irrelevant-files
Andreas Jaeger390e4fa2018-10-10 21:53:12 +0200736 - tempest-pg-full:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200737 irrelevant-files: *tempest-irrelevant-files
Dirk Muellerf3522412019-09-18 11:12:07 +0200738 - tempest-full-py3-opensuse15:
Andreas Jaegerff122de2018-09-23 17:18:49 +0200739 irrelevant-files: *tempest-irrelevant-files
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000740 periodic-stable:
741 jobs:
ghanshyam5b985922019-03-26 19:56:31 +0000742 - tempest-full-stein
743 - tempest-full-stein-py3
ghanshyamfbde01e2018-08-24 10:54:53 +0000744 - tempest-full-rocky
745 - tempest-full-rocky-py3
Andrea Frittoli (andreaf)c9d2c382017-11-21 15:03:18 +0000746 - tempest-full-queens
747 - tempest-full-queens-py3
Doug Hellmann6db0b782018-09-08 22:53:21 -0400748 periodic:
749 jobs:
Andreas Jaegerd6e04742018-10-11 20:54:18 +0200750 - tempest-all
Andreas Jaegera8f64e32018-10-14 20:18:27 +0200751 - tempest-full-oslo-master