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