Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 1 | - job: |
| 2 | name: devstack-tempest |
| 3 | parent: devstack |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 4 | 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. |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 10 | required-projects: &base_required-projects |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 11 | - opendev.org/openstack/tempest |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 12 | timeout: 7200 |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 13 | roles: &base_roles |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 14 | - zuul: opendev.org/openstack/devstack |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 15 | vars: &base_vars |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 16 | devstack_services: |
James E. Blair | d598009 | 2018-01-24 16:43:27 -0800 | [diff] [blame] | 17 | tempest: true |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 18 | devstack_local_conf: |
| 19 | test-config: |
| 20 | $TEMPEST_CONFIG: |
| 21 | compute: |
| 22 | min_compute_nodes: "{{ groups['compute'] | default(['controller']) | length }}" |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 23 | test_results_stage_name: test_results |
Andrea Frittoli | 4c24a1a | 2018-01-31 22:21:07 +0000 | [diff] [blame] | 24 | zuul_copy_output: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 25 | '{{ 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 Frittoli | 4c24a1a | 2018-01-31 22:21:07 +0000 | [diff] [blame] | 31 | extensions_to_txt: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 32 | conf: true |
| 33 | log: true |
| 34 | yaml: true |
| 35 | yml: true |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 36 | run: playbooks/devstack-tempest.yaml |
Andrea Frittoli (andreaf) | 7481055 | 2017-10-03 18:56:56 +0100 | [diff] [blame] | 37 | post-run: playbooks/post-tempest.yaml |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 38 | |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 39 | - job: |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 40 | 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 Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 53 | name: devstack-tempest-ipv6 |
| 54 | parent: devstack-ipv6 |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 55 | description: | |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 56 | 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 Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 68 | timeout: 7200 |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 69 | roles: *base_roles |
| 70 | vars: *base_vars |
| 71 | run: playbooks/devstack-tempest-ipv6.yaml |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 72 | post-run: playbooks/post-tempest.yaml |
| 73 | |
| 74 | - job: |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 75 | 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. |
Slawek Kaplonski | 8cb1b47 | 2020-02-19 13:12:54 +0100 | [diff] [blame] | 83 | timeout: 10800 |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 84 | vars: |
| 85 | tox_envlist: ipv6-only |
| 86 | |
| 87 | - job: |
Andrea Frittoli (andreaf) | 8e9e7f7 | 2017-11-21 14:59:47 +0000 | [diff] [blame] | 88 | name: tempest-full |
| 89 | parent: devstack-tempest |
Andrea Frittoli | 1c2a802 | 2018-02-20 15:58:13 +0000 | [diff] [blame] | 90 | # This currently works from stable/pike on. |
Matt Riedemann | 55e0065 | 2018-09-11 17:50:25 -0400 | [diff] [blame] | 91 | # Before stable/pike, legacy version of tempest-full |
| 92 | # 'legacy-tempest-dsvm-neutron-full' run. |
| 93 | branches: ^(?!stable/ocata).*$ |
Andrea Frittoli (andreaf) | 8e9e7f7 | 2017-11-21 14:59:47 +0000 | [diff] [blame] | 94 | description: | |
| 95 | Base integration test with Neutron networking and py27. |
| 96 | Former names for this job where: |
| 97 | * legacy-tempest-dsvm-neutron-full |
| 98 | * gate-tempest-dsvm-neutron-full-ubuntu-xenial |
| 99 | vars: |
Andreas Jaeger | ba2f479 | 2018-01-12 16:48:52 +0100 | [diff] [blame] | 100 | tox_envlist: full |
Andrea Frittoli (andreaf) | 8e9e7f7 | 2017-11-21 14:59:47 +0000 | [diff] [blame] | 101 | devstack_localrc: |
James E. Blair | d598009 | 2018-01-24 16:43:27 -0800 | [diff] [blame] | 102 | ENABLE_FILE_INJECTION: true |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 103 | ENABLE_VOLUME_MULTIATTACH: true |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 104 | USE_PYTHON3: False |
Matt Riedemann | f66aea0 | 2019-04-11 12:35:30 -0400 | [diff] [blame] | 105 | devstack_services: |
| 106 | # NOTE(mriedem): Disable the cinder-backup service from tempest-full |
| 107 | # since tempest-full is in the integrated-gate project template but |
| 108 | # the backup tests do not really involve other services so they should |
| 109 | # be run in some more cinder-specific job, especially because the |
| 110 | # tests fail at a high rate (see bugs 1483434, 1813217, 1745168) |
| 111 | c-bak: false |
Andrea Frittoli (andreaf) | 8e9e7f7 | 2017-11-21 14:59:47 +0000 | [diff] [blame] | 112 | |
| 113 | - job: |
Andreas Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 114 | name: tempest-full-oslo-master |
| 115 | parent: tempest-full |
| 116 | description: | |
| 117 | Integration test using current git of oslo libs. |
| 118 | This ensures that when oslo libs get released that they |
| 119 | do not break OpenStack server projects. |
| 120 | |
| 121 | Former name for this job was |
| 122 | periodic-tempest-dsvm-oslo-latest-full-master. |
| 123 | timeout: 10800 |
| 124 | required-projects: |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 125 | - opendev.org/openstack/oslo.cache |
| 126 | - opendev.org/openstack/oslo.concurrency |
| 127 | - opendev.org/openstack/oslo.config |
| 128 | - opendev.org/openstack/oslo.context |
| 129 | - opendev.org/openstack/oslo.db |
| 130 | - opendev.org/openstack/oslo.i18n |
| 131 | - opendev.org/openstack/oslo.log |
| 132 | - opendev.org/openstack/oslo.messaging |
| 133 | - opendev.org/openstack/oslo.middleware |
| 134 | - opendev.org/openstack/oslo.policy |
| 135 | - opendev.org/openstack/oslo.privsep |
| 136 | - opendev.org/openstack/oslo.reports |
| 137 | - opendev.org/openstack/oslo.rootwrap |
| 138 | - opendev.org/openstack/oslo.serialization |
| 139 | - opendev.org/openstack/oslo.service |
| 140 | - opendev.org/openstack/oslo.utils |
| 141 | - opendev.org/openstack/oslo.versionedobjects |
| 142 | - opendev.org/openstack/oslo.vmware |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 143 | vars: |
| 144 | devstack_localrc: |
| 145 | USE_PYTHON3: True |
Andreas Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 146 | |
| 147 | - job: |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 148 | name: tempest-full-parallel |
| 149 | parent: tempest-full |
| 150 | voting: false |
| 151 | branches: |
| 152 | - master |
| 153 | description: | |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 154 | Base integration test with Neutron networking. |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 155 | It includes all scenarios as it was in the past. |
| 156 | This job runs all scenario tests in parallel! |
| 157 | vars: |
| 158 | tox_envlist: full-parallel |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 159 | devstack_localrc: |
| 160 | USE_PYTHON3: True |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 161 | |
| 162 | - job: |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 163 | name: tempest-full-py3 |
Andrea Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 164 | parent: devstack-tempest |
Matt Riedemann | 55e0065 | 2018-09-11 17:50:25 -0400 | [diff] [blame] | 165 | # This currently works from stable/pike on. |
| 166 | # Before stable/pike, legacy version of tempest-full |
| 167 | # 'legacy-tempest-dsvm-neutron-full' run. |
| 168 | branches: ^(?!stable/ocata).*$ |
Andrea Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 169 | description: | |
| 170 | Base integration test with Neutron networking and py3. |
| 171 | Former names for this job where: |
| 172 | * legacy-tempest-dsvm-py35 |
| 173 | * gate-tempest-dsvm-py35 |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 174 | vars: |
Andrea Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 175 | tox_envlist: full |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 176 | devstack_localrc: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 177 | USE_PYTHON3: true |
| 178 | FORCE_CONFIG_DRIVE: true |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 179 | ENABLE_VOLUME_MULTIATTACH: true |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 180 | devstack_services: |
| 181 | s-account: false |
| 182 | s-container: false |
| 183 | s-object: false |
| 184 | s-proxy: false |
| 185 | # without Swift, c-bak cannot run (in the Gate at least) |
Matt Riedemann | f66aea0 | 2019-04-11 12:35:30 -0400 | [diff] [blame] | 186 | # NOTE(mriedem): Disable the cinder-backup service from |
| 187 | # tempest-full-py3 since tempest-full-py3 is in the integrated-gate-py3 |
| 188 | # project template but the backup tests do not really involve other |
| 189 | # services so they should be run in some more cinder-specific job, |
| 190 | # especially because the tests fail at a high rate (see bugs 1483434, |
| 191 | # 1813217, 1745168) |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 192 | c-bak: false |
| 193 | |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 194 | - job: |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 195 | name: tempest-integrated-networking |
| 196 | parent: devstack-tempest |
| 197 | branches: ^(?!stable/ocata).*$ |
| 198 | description: | |
| 199 | This job runs integration tests for networking. This is subset of |
| 200 | 'tempest-full' job and run only Neutron and Nova related tests. |
| 201 | This is meant to be run on neutron gate only. |
| 202 | vars: |
| 203 | tox_envlist: integrated-network |
| 204 | devstack_localrc: |
| 205 | USE_PYTHON3: true |
| 206 | FORCE_CONFIG_DRIVE: true |
| 207 | devstack_services: |
| 208 | s-account: false |
| 209 | s-container: false |
| 210 | s-object: false |
| 211 | s-proxy: false |
| 212 | c-bak: false |
| 213 | |
| 214 | - job: |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 215 | name: tempest-integrated-compute |
| 216 | parent: devstack-tempest |
| 217 | branches: ^(?!stable/ocata).*$ |
| 218 | description: | |
| 219 | This job runs integration tests for compute. This is |
| 220 | subset of 'tempest-full' job and run Nova, Neutron, Cinder (except backup tests) |
| 221 | and Glance related tests. This is meant to be run on Nova gate only. |
| 222 | vars: |
| 223 | tox_envlist: integrated-compute |
| 224 | devstack_localrc: |
| 225 | USE_PYTHON3: true |
| 226 | FORCE_CONFIG_DRIVE: true |
| 227 | ENABLE_VOLUME_MULTIATTACH: true |
| 228 | devstack_services: |
| 229 | s-account: false |
| 230 | s-container: false |
| 231 | s-object: false |
| 232 | s-proxy: false |
| 233 | c-bak: false |
| 234 | |
| 235 | - job: |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 236 | name: tempest-integrated-placement |
| 237 | parent: devstack-tempest |
| 238 | branches: ^(?!stable/ocata).*$ |
| 239 | description: | |
| 240 | This job runs integration tests for placement. This is |
| 241 | subset of 'tempest-full' job and run Nova and Neutron |
| 242 | related tests. This is meant to be run on Placement gate only. |
| 243 | vars: |
| 244 | tox_envlist: integrated-placement |
| 245 | devstack_localrc: |
| 246 | USE_PYTHON3: true |
| 247 | FORCE_CONFIG_DRIVE: true |
| 248 | ENABLE_VOLUME_MULTIATTACH: true |
| 249 | devstack_services: |
| 250 | s-account: false |
| 251 | s-container: false |
| 252 | s-object: false |
| 253 | s-proxy: false |
| 254 | c-bak: false |
| 255 | |
| 256 | - job: |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 257 | name: tempest-integrated-storage |
| 258 | parent: devstack-tempest |
| 259 | branches: ^(?!stable/ocata).*$ |
| 260 | description: | |
| 261 | This job runs integration tests for image & block storage. This is |
| 262 | subset of 'tempest-full' job and run Cinder, Glance, Swift and Nova |
| 263 | related tests. This is meant to be run on Cinder and Glance gate only. |
| 264 | vars: |
| 265 | tox_envlist: integrated-storage |
| 266 | devstack_localrc: |
| 267 | USE_PYTHON3: true |
| 268 | FORCE_CONFIG_DRIVE: true |
| 269 | ENABLE_VOLUME_MULTIATTACH: true |
| 270 | |
| 271 | - job: |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 272 | name: tempest-integrated-object-storage |
| 273 | parent: devstack-tempest |
| 274 | branches: ^(?!stable/ocata).*$ |
| 275 | description: | |
| 276 | This job runs integration tests for object storage. This is |
| 277 | subset of 'tempest-full' job and run Swift, Cinder and Glance |
| 278 | related tests. This is meant to be run on Swift gate only. |
| 279 | vars: |
| 280 | tox_envlist: integrated-object-storage |
| 281 | devstack_localrc: |
| 282 | # NOTE(gmann): swift is not ready on python3 yet and devstack |
| 283 | # install it on python2.7 only. But settting the USE_PYTHON3 |
| 284 | # for future once swift is ready on py3. |
| 285 | USE_PYTHON3: true |
| 286 | |
| 287 | - job: |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 288 | name: tempest-full-py3-ipv6 |
| 289 | parent: devstack-tempest-ipv6 |
| 290 | # This currently works from stable/pike on. |
| 291 | # Before stable/pike, legacy version of tempest-full |
| 292 | # 'legacy-tempest-dsvm-neutron-full' run. |
| 293 | branches: ^(?!stable/ocata).*$ |
| 294 | description: | |
| 295 | Base integration test with Neutron networking, IPv6 and py3. |
| 296 | vars: |
| 297 | tox_envlist: full |
| 298 | devstack_localrc: |
| 299 | USE_PYTHON3: true |
| 300 | FORCE_CONFIG_DRIVE: true |
| 301 | devstack_services: |
| 302 | s-account: false |
| 303 | s-container: false |
| 304 | s-object: false |
| 305 | s-proxy: false |
| 306 | # without Swift, c-bak cannot run (in the Gate at least) |
| 307 | c-bak: false |
| 308 | |
| 309 | - job: |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 310 | name: tempest-multinode-full-base |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 311 | parent: devstack-tempest |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 312 | description: | |
| 313 | Base multinode integration test with Neutron networking and py27. |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 314 | Former names for this job were: |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 315 | * neutron-tempest-multinode-full |
| 316 | * legacy-tempest-dsvm-neutron-multinode-full |
| 317 | * gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv |
| 318 | This job includes two nodes, controller / tempest plus a subnode, but |
| 319 | it can be used with different topologies, as long as a controller node |
| 320 | and a tempest one exist. |
Andrea Frittoli | 372bfd3 | 2018-06-18 13:03:40 +0200 | [diff] [blame] | 321 | timeout: 10800 |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 322 | vars: |
| 323 | tox_envlist: full |
| 324 | devstack_localrc: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 325 | FORCE_CONFIG_DRIVE: false |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 326 | NOVA_ALLOW_MOVE_TO_SAME_HOST: false |
| 327 | LIVE_MIGRATION_AVAILABLE: true |
| 328 | USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true |
| 329 | group-vars: |
| 330 | peers: |
| 331 | devstack_localrc: |
| 332 | NOVA_ALLOW_MOVE_TO_SAME_HOST: false |
| 333 | LIVE_MIGRATION_AVAILABLE: true |
| 334 | USE_BLOCK_MIGRATION_FOR_LIVE_MIGRATION: true |
| 335 | |
Slawek Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 336 | - job: |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 337 | name: tempest-multinode-full |
| 338 | parent: tempest-multinode-full-base |
| 339 | nodeset: openstack-two-node-bionic |
| 340 | # This job runs on Bionic from stable/stein on. |
| 341 | branches: ^(?!stable/(ocata|pike|queens|rocky)).*$ |
Ghanshyam Mann | 0fb306f | 2020-03-15 14:43:44 -0500 | [diff] [blame] | 342 | vars: |
| 343 | devstack_localrc: |
| 344 | USE_PYTHON3: False |
| 345 | group-vars: |
| 346 | subnode: |
| 347 | devstack_localrc: |
| 348 | USE_PYTHON3: False |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 349 | |
| 350 | - job: |
| 351 | name: tempest-multinode-full |
| 352 | parent: tempest-multinode-full-base |
| 353 | nodeset: openstack-two-node-xenial |
| 354 | # This job runs on Xenial and this is for stable/pike, stable/queens |
| 355 | # and stable/rocky. This job is prepared to make sure all stable branches |
| 356 | # before stable/stein will keep running on xenial. This job can be |
| 357 | # removed once stable/rocky is EOL. |
| 358 | branches: |
| 359 | - stable/pike |
| 360 | - stable/queens |
| 361 | - stable/rocky |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 362 | vars: |
| 363 | devstack_localrc: |
| 364 | USE_PYTHON3: False |
| 365 | group-vars: |
| 366 | subnode: |
| 367 | devstack_localrc: |
| 368 | USE_PYTHON3: False |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 369 | |
| 370 | - job: |
Slawek Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 371 | name: tempest-multinode-full-py3 |
| 372 | parent: tempest-multinode-full |
| 373 | vars: |
| 374 | devstack_localrc: |
| 375 | USE_PYTHON3: true |
Slawek Kaplonski | c0a4346 | 2019-11-18 14:34:13 +0100 | [diff] [blame] | 376 | group-vars: |
| 377 | subnode: |
| 378 | devstack_localrc: |
| 379 | USE_PYTHON3: true |
Slawek Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 380 | |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 381 | - job: |
Dirk Mueller | f352241 | 2019-09-18 11:12:07 +0200 | [diff] [blame] | 382 | name: tempest-full-py3-opensuse15 |
| 383 | parent: tempest-full-py3 |
| 384 | nodeset: devstack-single-node-opensuse-15 |
| 385 | description: | |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 386 | Base integration test with Neutron networking and py36 running |
Dirk Mueller | f352241 | 2019-09-18 11:12:07 +0200 | [diff] [blame] | 387 | on openSUSE Leap 15.x |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 388 | voting: false |
| 389 | |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 390 | - job: |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 391 | name: tempest-slow |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 392 | parent: tempest-multinode-full |
ghanshyam | a3c5a79 | 2018-05-14 12:31:27 +0000 | [diff] [blame] | 393 | description: | |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 394 | This multinode integration job will run all the tests tagged as slow. |
| 395 | It enables the lvm multibackend setup to cover few scenario tests. |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 396 | This job will run only slow tests (API or Scenario) serially. |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 397 | |
| 398 | Former names for this job were: |
| 399 | * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend |
| 400 | * tempest-scenario-multinode-lvm-multibackend |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 401 | timeout: 10800 |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 402 | vars: |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 403 | tox_envlist: slow-serial |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 404 | devstack_localrc: |
| 405 | CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2 |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 406 | ENABLE_VOLUME_MULTIATTACH: true |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 407 | devstack_plugins: |
| 408 | neutron: https://opendev.org/openstack/neutron |
| 409 | devstack_services: |
| 410 | neutron-placement: true |
| 411 | neutron-qos: true |
| 412 | devstack_local_conf: |
| 413 | post-config: |
| 414 | "/$NEUTRON_CORE_PLUGIN_CONF": |
| 415 | ovs: |
| 416 | bridge_mappings: public:br-ex |
| 417 | resource_provider_bandwidths: br-ex:1000000:1000000 |
| 418 | test-config: |
| 419 | $TEMPEST_CONFIG: |
| 420 | network-feature-enabled: |
| 421 | qos_placement_physnet: public |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 422 | tempest_concurrency: 2 |
Matt Riedemann | 3858ced | 2019-03-13 10:18:08 -0400 | [diff] [blame] | 423 | group-vars: |
| 424 | # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both |
| 425 | # the controller and subnode prior to Rocky so we have to make sure the |
| 426 | # variable is set in both locations. |
| 427 | subnode: |
| 428 | devstack_localrc: |
| 429 | ENABLE_VOLUME_MULTIATTACH: true |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 430 | |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 431 | - job: |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 432 | name: tempest-slow-py3 |
| 433 | parent: tempest-slow |
| 434 | vars: |
| 435 | devstack_localrc: |
| 436 | USE_PYTHON3: true |
| 437 | devstack_services: |
| 438 | s-account: false |
| 439 | s-container: false |
| 440 | s-object: false |
| 441 | s-proxy: false |
| 442 | # without Swift, c-bak cannot run (in the Gate at least) |
| 443 | c-bak: false |
Slawek Kaplonski | c0a4346 | 2019-11-18 14:34:13 +0100 | [diff] [blame] | 444 | group-vars: |
| 445 | subnode: |
| 446 | devstack_localrc: |
| 447 | USE_PYTHON3: true |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 448 | |
| 449 | - job: |
Ghanshyam Mann | 6d6bf5e | 2020-04-27 12:08:26 -0500 | [diff] [blame] | 450 | name: tempest-full-ussuri-py3 |
| 451 | parent: tempest-full-py3 |
| 452 | override-checkout: stable/ussuri |
| 453 | |
| 454 | - job: |
Ghanshyam Mann | 910f9c5 | 2019-10-04 17:30:00 +0000 | [diff] [blame] | 455 | name: tempest-full-train-py3 |
| 456 | parent: tempest-full-py3 |
| 457 | override-checkout: stable/train |
| 458 | |
| 459 | - job: |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 460 | name: tempest-full-stein-py3 |
| 461 | parent: tempest-full-py3 |
| 462 | override-checkout: stable/stein |
| 463 | |
| 464 | - job: |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 465 | name: tempest-tox-plugin-sanity-check |
| 466 | parent: tox |
| 467 | description: | |
| 468 | Run tempest plugin sanity check script using tox. |
ghanshyam | 28edda6 | 2019-03-07 17:46:11 +0000 | [diff] [blame] | 469 | nodeset: ubuntu-bionic |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 470 | vars: |
| 471 | tox_envlist: plugin-sanity-check |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 472 | timeout: 5000 |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 473 | |
ghanshyam | 1afb44b | 2018-05-25 00:53:48 +0300 | [diff] [blame] | 474 | - job: |
| 475 | name: tempest-cinder-v2-api |
| 476 | parent: devstack-tempest |
| 477 | branches: |
| 478 | - master |
| 479 | description: | |
| 480 | This job runs the cinder API test against v2 endpoint. |
| 481 | vars: |
| 482 | tox_envlist: all |
| 483 | tempest_test_regex: api.*volume |
| 484 | devstack_localrc: |
| 485 | TEMPEST_VOLUME_TYPE: volumev2 |
| 486 | |
Jens Harbott | 4e07155 | 2018-07-05 12:24:51 +0000 | [diff] [blame] | 487 | - job: |
| 488 | name: tempest-full-test-account-py3 |
| 489 | parent: tempest-full-py3 |
| 490 | description: | |
| 491 | This job runs the full set of tempest tests using pre-provisioned |
| 492 | credentials instead of dynamic credentials and py3. |
| 493 | Former names for this job were: |
| 494 | - legacy-tempest-dsvm-full-test-accounts |
| 495 | - legacy-tempest-dsvm-neutron-full-test-accounts |
| 496 | - legacy-tempest-dsvm-identity-v3-test-accounts |
| 497 | vars: |
| 498 | devstack_localrc: |
| 499 | TEMPEST_USE_TEST_ACCOUNTS: True |
| 500 | |
| 501 | - job: |
| 502 | name: tempest-full-test-account-no-admin-py3 |
| 503 | parent: tempest-full-test-account-py3 |
| 504 | description: | |
| 505 | This job runs the full set of tempest tests using pre-provisioned |
| 506 | credentials and py3 without having an admin account. |
| 507 | Former name for this job was: |
| 508 | - legacy-tempest-dsvm-neutron-full-non-admin |
| 509 | |
| 510 | vars: |
| 511 | devstack_localrc: |
| 512 | TEMPEST_HAS_ADMIN: False |
| 513 | |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 514 | - job: |
| 515 | name: tempest-pg-full |
| 516 | parent: tempest-full |
| 517 | description: | |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 518 | Base integration test with Neutron networking and PostgreSQL. |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 519 | Former name for this job was legacy-tempest-dsvm-neutron-pg-full. |
| 520 | vars: |
| 521 | devstack_localrc: |
| 522 | ENABLE_FILE_INJECTION: true |
| 523 | DATABASE_TYPE: postgresql |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 524 | USE_PYTHON3: True |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 525 | |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 526 | - project-template: |
| 527 | name: integrated-gate-networking |
| 528 | description: | |
| 529 | Run the python3 Tempest network integration tests (Nova and Neutron related) |
| 530 | in check and gate for the neutron integrated gate. This is meant to be |
| 531 | run on neutron gate only. |
| 532 | check: |
| 533 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 534 | - grenade |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 535 | - tempest-integrated-networking |
| 536 | gate: |
| 537 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 538 | - grenade |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 539 | - tempest-integrated-networking |
| 540 | |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 541 | - project-template: |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 542 | name: integrated-gate-compute |
| 543 | description: | |
| 544 | Run the python3 Tempest compute integration tests |
| 545 | (Nova, Neutron, Cinder and Glance related) in check and gate |
| 546 | for the Nova integrated gate. This is meant to be |
| 547 | run on Nova gate only. |
| 548 | check: |
| 549 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 550 | - grenade |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 551 | - tempest-integrated-compute |
| 552 | gate: |
| 553 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 554 | - grenade |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 555 | - tempest-integrated-compute |
| 556 | |
| 557 | - project-template: |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 558 | name: integrated-gate-placement |
| 559 | description: | |
| 560 | Run the python3 Tempest placement integration tests |
| 561 | (Nova and Neutron related) in check and gate |
| 562 | for the Placement integrated gate. This is meant to be |
| 563 | run on Placement gate only. |
| 564 | check: |
| 565 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 566 | - grenade |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 567 | - tempest-integrated-placement |
| 568 | gate: |
| 569 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 570 | - grenade |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 571 | - tempest-integrated-placement |
| 572 | |
| 573 | - project-template: |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 574 | name: integrated-gate-storage |
| 575 | description: | |
| 576 | Run the python3 Tempest image & block storage integration tests |
| 577 | (Cinder, Glance, Swift and Nova related) in check and gate |
| 578 | for the neutron integrated gate. This is meant to be |
| 579 | run on Cinder and Glance gate only. |
| 580 | check: |
| 581 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 582 | - grenade |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 583 | - tempest-integrated-storage |
| 584 | gate: |
| 585 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 586 | - grenade |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 587 | - tempest-integrated-storage |
| 588 | |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 589 | - project-template: |
| 590 | name: integrated-gate-object-storage |
| 591 | description: | |
| 592 | Run the python3 Tempest object storage integration tests |
| 593 | (Swift, Cinder and Glance related) in check and gate |
| 594 | for the swift integrated gate. This is meant to be |
| 595 | run on swift gate only. |
| 596 | check: |
| 597 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 598 | - grenade |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 599 | - tempest-integrated-object-storage |
| 600 | gate: |
| 601 | jobs: |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 602 | - grenade |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 603 | - tempest-integrated-object-storage |
| 604 | |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 605 | - project: |
Felipe Monteiro | 5277c20 | 2018-08-19 17:11:33 +0100 | [diff] [blame] | 606 | templates: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 607 | - check-requirements |
ghanshyam | b294a17 | 2018-12-19 04:06:36 +0000 | [diff] [blame] | 608 | - integrated-gate-py3 |
Andreas Jaeger | 015a006 | 2018-09-09 06:03:08 +0200 | [diff] [blame] | 609 | - openstack-cover-jobs |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 610 | - openstack-python3-ussuri-jobs |
Doug Hellmann | 5f4c55d | 2018-09-08 22:54:05 -0400 | [diff] [blame] | 611 | - publish-openstack-docs-pti |
| 612 | - release-notes-jobs-python3 |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 613 | check: |
| 614 | jobs: |
| 615 | - devstack-tempest: |
| 616 | files: |
| 617 | - ^playbooks/ |
| 618 | - ^roles/ |
| 619 | - ^.zuul.yaml$ |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 620 | - devstack-tempest-ipv6: |
| 621 | voting: false |
| 622 | files: |
| 623 | - ^playbooks/ |
| 624 | - ^roles/ |
| 625 | - ^.zuul.yaml$ |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 626 | - tempest-full-parallel: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 627 | # Define list of irrelevant files to use everywhere else |
| 628 | irrelevant-files: &tempest-irrelevant-files |
Felipe Monteiro | ec1b111 | 2018-07-18 19:23:37 -0400 | [diff] [blame] | 629 | - ^.*\.rst$ |
| 630 | - ^doc/.*$ |
| 631 | - ^etc/.*$ |
| 632 | - ^releasenotes/.*$ |
| 633 | - ^setup.cfg$ |
| 634 | - ^tempest/hacking/.*$ |
| 635 | - ^tempest/tests/.*$ |
Felipe Monteiro | 2dc7217 | 2018-11-03 18:41:04 -0400 | [diff] [blame] | 636 | - ^tools/.*$ |
Masayuki Igawa | 3044a29 | 2019-09-17 15:30:54 +0900 | [diff] [blame] | 637 | - ^.coveragerc$ |
| 638 | - ^.gitignore$ |
| 639 | - ^.gitreview$ |
| 640 | - ^.mailmap$ |
Masayuki Igawa | 47b1437 | 2018-10-16 14:58:52 +0900 | [diff] [blame] | 641 | - tempest-full-py3: |
| 642 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 643 | - tempest-full-py3-ipv6: |
| 644 | voting: false |
| 645 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | 6d6bf5e | 2020-04-27 12:08:26 -0500 | [diff] [blame] | 646 | - tempest-full-ussuri-py3: |
| 647 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | 910f9c5 | 2019-10-04 17:30:00 +0000 | [diff] [blame] | 648 | - tempest-full-train-py3: |
| 649 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 650 | - tempest-full-stein-py3: |
| 651 | irrelevant-files: *tempest-irrelevant-files |
Slawek Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 652 | - tempest-multinode-full-py3: |
| 653 | irrelevant-files: *tempest-irrelevant-files |
Felipe Monteiro | 68273ac | 2018-11-06 23:04:35 -0500 | [diff] [blame] | 654 | - tempest-tox-plugin-sanity-check: |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 655 | irrelevant-files: &tempest-irrelevant-files-2 |
Felipe Monteiro | 68273ac | 2018-11-06 23:04:35 -0500 | [diff] [blame] | 656 | - ^.*\.rst$ |
| 657 | - ^doc/.*$ |
| 658 | - ^etc/.*$ |
| 659 | - ^releasenotes/.*$ |
| 660 | - ^setup.cfg$ |
| 661 | - ^tempest/hacking/.*$ |
| 662 | - ^tempest/tests/.*$ |
Masayuki Igawa | 3044a29 | 2019-09-17 15:30:54 +0900 | [diff] [blame] | 663 | - ^.coveragerc$ |
| 664 | - ^.gitignore$ |
| 665 | - ^.gitreview$ |
| 666 | - ^.mailmap$ |
Felipe Monteiro | 68273ac | 2018-11-06 23:04:35 -0500 | [diff] [blame] | 667 | # tools/ is not here since this relies on a script in tools/. |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 668 | - tempest-ipv6-only: |
| 669 | irrelevant-files: *tempest-irrelevant-files-2 |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 670 | - tempest-slow-py3: |
| 671 | irrelevant-files: *tempest-irrelevant-files |
melanie witt | 591fe21 | 2018-05-01 22:56:00 +0000 | [diff] [blame] | 672 | - nova-live-migration: |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 673 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 674 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | d2bdd8c | 2020-02-18 20:54:30 -0600 | [diff] [blame] | 675 | - devstack-plugin-ceph-tempest-py3: |
| 676 | voting: false |
| 677 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 678 | - neutron-grenade-multinode: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 679 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 680 | - grenade: |
ghanshyam | 109c4f1 | 2018-12-12 06:59:56 +0000 | [diff] [blame] | 681 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 682 | - puppet-openstack-integration-4-scenario001-tempest-centos-7: |
| 683 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 684 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 685 | - puppet-openstack-integration-4-scenario002-tempest-centos-7: |
| 686 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 687 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 688 | - puppet-openstack-integration-4-scenario003-tempest-centos-7: |
| 689 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 690 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 691 | - puppet-openstack-integration-4-scenario004-tempest-centos-7: |
| 692 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 693 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 694 | - neutron-tempest-dvr: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 695 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | a9cc6c1 | 2018-10-05 02:58:05 +0000 | [diff] [blame] | 696 | - interop-tempest-consistency: |
ghanshyam | a9cc6c1 | 2018-10-05 02:58:05 +0000 | [diff] [blame] | 697 | irrelevant-files: *tempest-irrelevant-files |
Jens Harbott | 4e07155 | 2018-07-05 12:24:51 +0000 | [diff] [blame] | 698 | - tempest-full-test-account-py3: |
| 699 | voting: false |
| 700 | irrelevant-files: *tempest-irrelevant-files |
| 701 | - tempest-full-test-account-no-admin-py3: |
| 702 | voting: false |
| 703 | irrelevant-files: *tempest-irrelevant-files |
Masayuki Igawa | f2104a8 | 2019-09-25 11:35:44 +0900 | [diff] [blame] | 704 | - openstack-tox-bashate: |
| 705 | irrelevant-files: *tempest-irrelevant-files-2 |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 706 | gate: |
| 707 | jobs: |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 708 | - tempest-slow-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 709 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 710 | - neutron-grenade-multinode: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 711 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 712 | - tempest-full-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 713 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam Mann | f8b8987 | 2020-04-23 18:28:18 -0500 | [diff] [blame] | 714 | - grenade: |
ghanshyam | 109c4f1 | 2018-12-12 06:59:56 +0000 | [diff] [blame] | 715 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 716 | - tempest-ipv6-only: |
| 717 | irrelevant-files: *tempest-irrelevant-files-2 |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 718 | experimental: |
| 719 | jobs: |
ghanshyam | 1afb44b | 2018-05-25 00:53:48 +0300 | [diff] [blame] | 720 | - tempest-cinder-v2-api: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 721 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 722 | - tempest-all: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 723 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 724 | - legacy-tempest-dsvm-neutron-dvr-multinode-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 725 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 726 | - neutron-tempest-dvr-ha-multinode-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 727 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | ac6224e | 2018-10-16 11:09:59 +0000 | [diff] [blame] | 728 | - nova-tempest-v2-api: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 729 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 730 | - legacy-tempest-dsvm-lvm-multibackend: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 731 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 732 | - tempest-pg-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 733 | irrelevant-files: *tempest-irrelevant-files |
Dirk Mueller | f352241 | 2019-09-18 11:12:07 +0200 | [diff] [blame] | 734 | - tempest-full-py3-opensuse15: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 735 | irrelevant-files: *tempest-irrelevant-files |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 736 | periodic-stable: |
| 737 | jobs: |
Ghanshyam Mann | 6d6bf5e | 2020-04-27 12:08:26 -0500 | [diff] [blame] | 738 | - tempest-full-ussuri-py3 |
Ghanshyam Mann | 910f9c5 | 2019-10-04 17:30:00 +0000 | [diff] [blame] | 739 | - tempest-full-train-py3 |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 740 | - tempest-full-stein-py3 |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 741 | periodic: |
| 742 | jobs: |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 743 | - tempest-all |
Andreas Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 744 | - tempest-full-oslo-master |