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 |
Andrea Frittoli (andreaf) | 8e9e7f7 | 2017-11-21 14:59:47 +0000 | [diff] [blame] | 103 | |
| 104 | - job: |
Andreas Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 105 | 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 Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 116 | - 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 Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 134 | |
| 135 | - job: |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 136 | 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 Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 149 | name: tempest-full-py3 |
Andrea Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 150 | parent: devstack-tempest |
Matt Riedemann | 55e0065 | 2018-09-11 17:50:25 -0400 | [diff] [blame] | 151 | # 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 Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 155 | 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 Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 160 | vars: |
Andrea Frittoli | 85076bd | 2018-01-24 10:19:40 +0000 | [diff] [blame] | 161 | tox_envlist: full |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 162 | devstack_localrc: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 163 | USE_PYTHON3: true |
| 164 | FORCE_CONFIG_DRIVE: true |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 165 | ENABLE_VOLUME_MULTIATTACH: true |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 166 | 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 Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 174 | - job: |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 175 | 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: |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 195 | 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: |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 216 | 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 Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 237 | 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: |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 252 | 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 Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 268 | 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: |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 290 | name: tempest-multinode-full-base |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 291 | parent: devstack-tempest |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 292 | description: | |
| 293 | Base multinode integration test with Neutron networking and py27. |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 294 | Former names for this job were: |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 295 | * 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 Frittoli | 372bfd3 | 2018-06-18 13:03:40 +0200 | [diff] [blame] | 301 | timeout: 10800 |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 302 | vars: |
| 303 | tox_envlist: full |
| 304 | devstack_localrc: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 305 | FORCE_CONFIG_DRIVE: false |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 306 | 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 Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 316 | - job: |
ghanshyam | 42c9a8d | 2018-10-16 12:01:48 +0000 | [diff] [blame] | 317 | 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 Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 337 | name: tempest-multinode-full-py3 |
| 338 | parent: tempest-multinode-full |
| 339 | vars: |
| 340 | devstack_localrc: |
| 341 | USE_PYTHON3: true |
| 342 | |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 343 | - job: |
| 344 | name: tempest-full-py3-opensuse150 |
| 345 | parent: tempest-full-py3 |
ghanshyam | a066fcd | 2019-03-07 17:34:11 +0000 | [diff] [blame] | 346 | nodeset: devstack-single-node-opensuse-150 |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 347 | description: | |
| 348 | Base integration test with Neutron networking and py36 running |
| 349 | on openSUSE Leap 15.0 |
| 350 | voting: false |
| 351 | |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 352 | - job: |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 353 | name: tempest-slow |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 354 | parent: tempest-multinode-full |
ghanshyam | a3c5a79 | 2018-05-14 12:31:27 +0000 | [diff] [blame] | 355 | description: | |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 356 | This multinode integration job will run all the tests tagged as slow. |
| 357 | It enables the lvm multibackend setup to cover few scenario tests. |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 358 | This job will run only slow tests (API or Scenario) serially. |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 359 | |
| 360 | Former names for this job were: |
| 361 | * legacy-tempest-dsvm-neutron-scenario-multinode-lvm-multibackend |
| 362 | * tempest-scenario-multinode-lvm-multibackend |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 363 | timeout: 10800 |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 364 | vars: |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 365 | tox_envlist: slow-serial |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 366 | devstack_localrc: |
| 367 | CINDER_ENABLED_BACKENDS: lvm:lvmdriver-1,lvm:lvmdriver-2 |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 368 | ENABLE_VOLUME_MULTIATTACH: true |
Lajos Katona | c87a06b | 2019-01-04 13:21:48 +0100 | [diff] [blame] | 369 | devstack_plugins: |
| 370 | neutron: https://opendev.org/openstack/neutron |
| 371 | devstack_services: |
| 372 | neutron-placement: true |
| 373 | neutron-qos: true |
| 374 | devstack_local_conf: |
| 375 | post-config: |
| 376 | "/$NEUTRON_CORE_PLUGIN_CONF": |
| 377 | ovs: |
| 378 | bridge_mappings: public:br-ex |
| 379 | resource_provider_bandwidths: br-ex:1000000:1000000 |
| 380 | test-config: |
| 381 | $TEMPEST_CONFIG: |
| 382 | network-feature-enabled: |
| 383 | qos_placement_physnet: public |
Felipe Monteiro | 99585f3 | 2018-07-08 17:59:43 -0400 | [diff] [blame] | 384 | tempest_concurrency: 2 |
Matt Riedemann | 3858ced | 2019-03-13 10:18:08 -0400 | [diff] [blame] | 385 | group-vars: |
| 386 | # NOTE(mriedem): The ENABLE_VOLUME_MULTIATTACH variable is used on both |
| 387 | # the controller and subnode prior to Rocky so we have to make sure the |
| 388 | # variable is set in both locations. |
| 389 | subnode: |
| 390 | devstack_localrc: |
| 391 | ENABLE_VOLUME_MULTIATTACH: true |
ghanshyam | 402df09 | 2018-05-14 01:29:04 +0000 | [diff] [blame] | 392 | |
Andrea Frittoli | c4377ef | 2017-11-30 12:00:38 +0000 | [diff] [blame] | 393 | - job: |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 394 | name: tempest-slow-py3 |
| 395 | parent: tempest-slow |
| 396 | vars: |
| 397 | devstack_localrc: |
| 398 | USE_PYTHON3: true |
| 399 | devstack_services: |
| 400 | s-account: false |
| 401 | s-container: false |
| 402 | s-object: false |
| 403 | s-proxy: false |
| 404 | # without Swift, c-bak cannot run (in the Gate at least) |
| 405 | c-bak: false |
| 406 | |
| 407 | - job: |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 408 | name: tempest-full-stein |
| 409 | parent: tempest-full |
| 410 | override-checkout: stable/stein |
| 411 | |
| 412 | - job: |
| 413 | name: tempest-full-stein-py3 |
| 414 | parent: tempest-full-py3 |
| 415 | override-checkout: stable/stein |
| 416 | |
| 417 | - job: |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 418 | name: tempest-full-rocky |
| 419 | parent: tempest-full |
ghanshyam | f9a4c77 | 2018-11-15 13:29:19 +0000 | [diff] [blame] | 420 | nodeset: openstack-single-node-xenial |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 421 | override-checkout: stable/rocky |
| 422 | |
| 423 | - job: |
| 424 | name: tempest-full-rocky-py3 |
| 425 | parent: tempest-full-py3 |
ghanshyam | f9a4c77 | 2018-11-15 13:29:19 +0000 | [diff] [blame] | 426 | nodeset: openstack-single-node-xenial |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 427 | override-checkout: stable/rocky |
| 428 | |
| 429 | - job: |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 430 | name: tempest-full-queens |
| 431 | parent: tempest-full |
ghanshyam | f9a4c77 | 2018-11-15 13:29:19 +0000 | [diff] [blame] | 432 | nodeset: openstack-single-node-xenial |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 433 | override-checkout: stable/queens |
| 434 | |
| 435 | - job: |
| 436 | name: tempest-full-queens-py3 |
| 437 | parent: tempest-full-py3 |
ghanshyam | f9a4c77 | 2018-11-15 13:29:19 +0000 | [diff] [blame] | 438 | nodeset: openstack-single-node-xenial |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 439 | override-checkout: stable/queens |
| 440 | |
| 441 | - job: |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 442 | name: tempest-tox-plugin-sanity-check |
| 443 | parent: tox |
| 444 | description: | |
| 445 | Run tempest plugin sanity check script using tox. |
ghanshyam | 28edda6 | 2019-03-07 17:46:11 +0000 | [diff] [blame] | 446 | nodeset: ubuntu-bionic |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 447 | vars: |
| 448 | tox_envlist: plugin-sanity-check |
| 449 | voting: false |
| 450 | timeout: 5000 |
| 451 | required-projects: |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 452 | - opendev.org/airship/tempest-plugin |
| 453 | - opendev.org/x/almanach |
| 454 | - opendev.org/openstack/aodh |
| 455 | - opendev.org/openstack/barbican-tempest-plugin |
| 456 | - opendev.org/openstack/blazar-tempest-plugin |
| 457 | - opendev.org/openstack/ceilometer |
| 458 | - opendev.org/openstack/cinder-tempest-plugin |
| 459 | - opendev.org/openstack/cloudkitty-tempest-plugin |
| 460 | - opendev.org/openstack/congress-tempest-plugin |
Masayuki Igawa | 7f5dd85 | 2019-05-16 18:48:59 +0900 | [diff] [blame] | 461 | - opendev.org/openstack/cyborg-tempest-plugin |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 462 | - opendev.org/openstack/designate-tempest-plugin |
| 463 | - opendev.org/openstack/ec2api-tempest-plugin |
| 464 | - opendev.org/openstack/freezer |
| 465 | - opendev.org/openstack/freezer-api |
| 466 | - opendev.org/openstack/freezer-tempest-plugin |
| 467 | - opendev.org/x/gabbi-tempest |
| 468 | - opendev.org/x/gce-api |
| 469 | - opendev.org/x/glare |
| 470 | - opendev.org/openstack/heat-tempest-plugin |
| 471 | - opendev.org/x/intel-nfv-ci-tests |
| 472 | - opendev.org/openstack/ironic-tempest-plugin |
| 473 | - opendev.org/openstack/ironic-inspector |
| 474 | - opendev.org/openstack/keystone-tempest-plugin |
| 475 | - opendev.org/x/kingbird |
| 476 | - opendev.org/openstack/kuryr-tempest-plugin |
| 477 | - opendev.org/openstack/magnum |
| 478 | - opendev.org/openstack/magnum-tempest-plugin |
| 479 | - opendev.org/openstack/manila |
| 480 | - opendev.org/openstack/manila-tempest-plugin |
| 481 | - opendev.org/openstack/mistral-tempest-plugin |
| 482 | - opendev.org/x/mogan |
| 483 | - opendev.org/openstack/monasca-api |
| 484 | - opendev.org/openstack/monasca-log-api |
| 485 | - opendev.org/openstack/monasca-tempest-plugin |
| 486 | - opendev.org/openstack/murano-tempest-plugin |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 487 | - opendev.org/openstack/networking-bgpvpn |
| 488 | - opendev.org/x/networking-cisco |
| 489 | - opendev.org/x/networking-fortinet |
| 490 | - opendev.org/openstack/networking-generic-switch |
| 491 | - opendev.org/openstack/networking-l2gw-tempest-plugin |
| 492 | - opendev.org/openstack/networking-midonet |
| 493 | - opendev.org/openstack/networking-sfc |
| 494 | - opendev.org/x/networking-spp |
| 495 | - opendev.org/openstack/neutron |
| 496 | - opendev.org/openstack/neutron-dynamic-routing |
| 497 | - opendev.org/openstack/neutron-fwaas |
| 498 | - opendev.org/openstack/neutron-lbaas |
| 499 | - opendev.org/openstack/neutron-tempest-plugin |
| 500 | - opendev.org/openstack/neutron-vpnaas |
| 501 | - opendev.org/x/nova-lxd |
| 502 | - opendev.org/x/novajoin-tempest-plugin |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 503 | - opendev.org/openstack/octavia-tempest-plugin |
| 504 | - opendev.org/openstack/oswin-tempest-plugin |
| 505 | - opendev.org/openstack/panko |
| 506 | - opendev.org/openstack/patrole |
| 507 | - opendev.org/openstack/python-watcherclient |
| 508 | - opendev.org/openstack/qinling |
| 509 | - opendev.org/openstack/requirements |
| 510 | - opendev.org/openstack/sahara-tests |
| 511 | - opendev.org/openstack/senlin |
| 512 | - opendev.org/openstack/senlin-tempest-plugin |
| 513 | - opendev.org/openstack/solum-tempest-plugin |
| 514 | - opendev.org/x/tap-as-a-service |
Masayuki Igawa | e36fe67 | 2019-05-23 13:43:46 +0200 | [diff] [blame] | 515 | - opendev.org/x/tap-as-a-service-tempest-plugin |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 516 | - opendev.org/openstack/telemetry-tempest-plugin |
| 517 | - opendev.org/openstack/tempest-horizon |
| 518 | - opendev.org/x/tobiko |
| 519 | - opendev.org/x/trio2o |
| 520 | - opendev.org/openstack/tripleo-common-tempest-plugin |
| 521 | - opendev.org/openstack/trove-tempest-plugin |
| 522 | - opendev.org/x/valet |
| 523 | - opendev.org/openstack/vitrage-tempest-plugin |
| 524 | - opendev.org/x/vmware-nsx-tempest-plugin |
| 525 | - opendev.org/openstack/watcher-tempest-plugin |
Masayuki Igawa | e36fe67 | 2019-05-23 13:43:46 +0200 | [diff] [blame] | 526 | - opendev.org/x/whitebox-tempest-plugin |
OpenDev Sysadmins | 682965e | 2019-04-19 19:29:35 +0000 | [diff] [blame] | 527 | - opendev.org/openstack/zaqar-tempest-plugin |
| 528 | - opendev.org/openstack/zun-tempest-plugin |
Chandan Kumar | cf576b2 | 2017-10-23 17:43:36 +0530 | [diff] [blame] | 529 | |
ghanshyam | 1afb44b | 2018-05-25 00:53:48 +0300 | [diff] [blame] | 530 | - job: |
| 531 | name: tempest-cinder-v2-api |
| 532 | parent: devstack-tempest |
| 533 | branches: |
| 534 | - master |
| 535 | description: | |
| 536 | This job runs the cinder API test against v2 endpoint. |
| 537 | vars: |
| 538 | tox_envlist: all |
| 539 | tempest_test_regex: api.*volume |
| 540 | devstack_localrc: |
| 541 | TEMPEST_VOLUME_TYPE: volumev2 |
| 542 | |
Jens Harbott | 4e07155 | 2018-07-05 12:24:51 +0000 | [diff] [blame] | 543 | - job: |
| 544 | name: tempest-full-test-account-py3 |
| 545 | parent: tempest-full-py3 |
| 546 | description: | |
| 547 | This job runs the full set of tempest tests using pre-provisioned |
| 548 | credentials instead of dynamic credentials and py3. |
| 549 | Former names for this job were: |
| 550 | - legacy-tempest-dsvm-full-test-accounts |
| 551 | - legacy-tempest-dsvm-neutron-full-test-accounts |
| 552 | - legacy-tempest-dsvm-identity-v3-test-accounts |
| 553 | vars: |
| 554 | devstack_localrc: |
| 555 | TEMPEST_USE_TEST_ACCOUNTS: True |
| 556 | |
| 557 | - job: |
| 558 | name: tempest-full-test-account-no-admin-py3 |
| 559 | parent: tempest-full-test-account-py3 |
| 560 | description: | |
| 561 | This job runs the full set of tempest tests using pre-provisioned |
| 562 | credentials and py3 without having an admin account. |
| 563 | Former name for this job was: |
| 564 | - legacy-tempest-dsvm-neutron-full-non-admin |
| 565 | |
| 566 | vars: |
| 567 | devstack_localrc: |
| 568 | TEMPEST_HAS_ADMIN: False |
| 569 | |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 570 | - job: |
| 571 | name: tempest-pg-full |
| 572 | parent: tempest-full |
| 573 | description: | |
| 574 | Base integration test with Neutron networking and py27 and PostgreSQL. |
| 575 | Former name for this job was legacy-tempest-dsvm-neutron-pg-full. |
| 576 | vars: |
| 577 | devstack_localrc: |
| 578 | ENABLE_FILE_INJECTION: true |
| 579 | DATABASE_TYPE: postgresql |
| 580 | |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 581 | - project-template: |
| 582 | name: integrated-gate-networking |
| 583 | description: | |
| 584 | Run the python3 Tempest network integration tests (Nova and Neutron related) |
| 585 | in check and gate for the neutron integrated gate. This is meant to be |
| 586 | run on neutron gate only. |
| 587 | check: |
| 588 | jobs: |
| 589 | - grenade-py3 |
| 590 | - tempest-integrated-networking |
| 591 | gate: |
| 592 | jobs: |
| 593 | - grenade-py3 |
| 594 | - tempest-integrated-networking |
| 595 | |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 596 | - project-template: |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 597 | name: integrated-gate-compute |
| 598 | description: | |
| 599 | Run the python3 Tempest compute integration tests |
| 600 | (Nova, Neutron, Cinder and Glance related) in check and gate |
| 601 | for the Nova integrated gate. This is meant to be |
| 602 | run on Nova gate only. |
| 603 | check: |
| 604 | jobs: |
| 605 | - grenade-py3 |
| 606 | - tempest-integrated-compute |
| 607 | gate: |
| 608 | jobs: |
| 609 | - grenade-py3 |
| 610 | - tempest-integrated-compute |
| 611 | |
| 612 | - project-template: |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 613 | name: integrated-gate-placement |
| 614 | description: | |
| 615 | Run the python3 Tempest placement integration tests |
| 616 | (Nova and Neutron related) in check and gate |
| 617 | for the Placement integrated gate. This is meant to be |
| 618 | run on Placement gate only. |
| 619 | check: |
| 620 | jobs: |
| 621 | - grenade-py3 |
| 622 | - tempest-integrated-placement |
| 623 | gate: |
| 624 | jobs: |
| 625 | - grenade-py3 |
| 626 | - tempest-integrated-placement |
| 627 | |
| 628 | - project-template: |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 629 | name: integrated-gate-storage |
| 630 | description: | |
| 631 | Run the python3 Tempest image & block storage integration tests |
| 632 | (Cinder, Glance, Swift and Nova related) in check and gate |
| 633 | for the neutron integrated gate. This is meant to be |
| 634 | run on Cinder and Glance gate only. |
| 635 | check: |
| 636 | jobs: |
| 637 | - grenade-py3 |
| 638 | - tempest-integrated-storage |
| 639 | gate: |
| 640 | jobs: |
| 641 | - grenade-py3 |
| 642 | - tempest-integrated-storage |
| 643 | |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 644 | - project-template: |
| 645 | name: integrated-gate-object-storage |
| 646 | description: | |
| 647 | Run the python3 Tempest object storage integration tests |
| 648 | (Swift, Cinder and Glance related) in check and gate |
| 649 | for the swift integrated gate. This is meant to be |
| 650 | run on swift gate only. |
| 651 | check: |
| 652 | jobs: |
| 653 | - grenade-py3 |
| 654 | - tempest-integrated-object-storage |
| 655 | gate: |
| 656 | jobs: |
| 657 | - grenade-py3 |
| 658 | - tempest-integrated-object-storage |
| 659 | |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 660 | - project: |
Felipe Monteiro | 5277c20 | 2018-08-19 17:11:33 +0100 | [diff] [blame] | 661 | templates: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 662 | - check-requirements |
| 663 | - integrated-gate |
ghanshyam | b294a17 | 2018-12-19 04:06:36 +0000 | [diff] [blame] | 664 | - integrated-gate-py3 |
Andreas Jaeger | 015a006 | 2018-09-09 06:03:08 +0200 | [diff] [blame] | 665 | - openstack-cover-jobs |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 666 | - openstack-python-jobs |
| 667 | - openstack-python35-jobs |
Corey Bryant | 7409c72 | 2019-07-05 15:55:32 -0400 | [diff] [blame] | 668 | - openstack-python3-train-jobs |
Doug Hellmann | 5f4c55d | 2018-09-08 22:54:05 -0400 | [diff] [blame] | 669 | - publish-openstack-docs-pti |
| 670 | - release-notes-jobs-python3 |
Andrea Frittoli (andreaf) | 7d5445d | 2017-10-03 18:43:05 +0100 | [diff] [blame] | 671 | check: |
| 672 | jobs: |
| 673 | - devstack-tempest: |
| 674 | files: |
| 675 | - ^playbooks/ |
| 676 | - ^roles/ |
| 677 | - ^.zuul.yaml$ |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 678 | - devstack-tempest-ipv6: |
| 679 | voting: false |
| 680 | files: |
| 681 | - ^playbooks/ |
| 682 | - ^roles/ |
| 683 | - ^.zuul.yaml$ |
Matt Riedemann | 7581e99 | 2018-10-01 11:33:34 -0400 | [diff] [blame] | 684 | - tempest-full-parallel: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 685 | # Define list of irrelevant files to use everywhere else |
| 686 | irrelevant-files: &tempest-irrelevant-files |
Felipe Monteiro | ec1b111 | 2018-07-18 19:23:37 -0400 | [diff] [blame] | 687 | - ^.*\.rst$ |
| 688 | - ^doc/.*$ |
| 689 | - ^etc/.*$ |
| 690 | - ^releasenotes/.*$ |
| 691 | - ^setup.cfg$ |
| 692 | - ^tempest/hacking/.*$ |
| 693 | - ^tempest/tests/.*$ |
Felipe Monteiro | 2dc7217 | 2018-11-03 18:41:04 -0400 | [diff] [blame] | 694 | - ^tools/.*$ |
Masayuki Igawa | 47b1437 | 2018-10-16 14:58:52 +0900 | [diff] [blame] | 695 | - tempest-full-py3: |
| 696 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | dbf8a13 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 697 | - tempest-full-py3-ipv6: |
| 698 | voting: false |
| 699 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 700 | - tempest-full-stein: |
| 701 | irrelevant-files: *tempest-irrelevant-files |
| 702 | - tempest-full-stein-py3: |
| 703 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 704 | - tempest-full-rocky: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 705 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 706 | - tempest-full-rocky-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 707 | irrelevant-files: *tempest-irrelevant-files |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 708 | - tempest-full-queens: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 709 | irrelevant-files: *tempest-irrelevant-files |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 710 | - tempest-full-queens-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 711 | irrelevant-files: *tempest-irrelevant-files |
Andrea Frittoli | 688f36e | 2018-02-18 22:27:34 +0000 | [diff] [blame] | 712 | - tempest-multinode-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 713 | irrelevant-files: *tempest-irrelevant-files |
Slawek Kaplonski | 0df2f91 | 2019-01-30 16:45:57 +0100 | [diff] [blame] | 714 | - tempest-multinode-full-py3: |
| 715 | irrelevant-files: *tempest-irrelevant-files |
Felipe Monteiro | 68273ac | 2018-11-06 23:04:35 -0500 | [diff] [blame] | 716 | - tempest-tox-plugin-sanity-check: |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 717 | irrelevant-files: &tempest-irrelevant-files-2 |
Felipe Monteiro | 68273ac | 2018-11-06 23:04:35 -0500 | [diff] [blame] | 718 | - ^.*\.rst$ |
| 719 | - ^doc/.*$ |
| 720 | - ^etc/.*$ |
| 721 | - ^releasenotes/.*$ |
| 722 | - ^setup.cfg$ |
| 723 | - ^tempest/hacking/.*$ |
| 724 | - ^tempest/tests/.*$ |
| 725 | # tools/ is not here since this relies on a script in tools/. |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 726 | - tempest-ipv6-only: |
| 727 | irrelevant-files: *tempest-irrelevant-files-2 |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 728 | - tempest-slow: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 729 | irrelevant-files: *tempest-irrelevant-files |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 730 | - tempest-slow-py3: |
| 731 | irrelevant-files: *tempest-irrelevant-files |
melanie witt | 591fe21 | 2018-05-01 22:56:00 +0000 | [diff] [blame] | 732 | - nova-live-migration: |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 733 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 734 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 735 | - neutron-grenade-multinode: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 736 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 737 | - neutron-grenade: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 738 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | 109c4f1 | 2018-12-12 06:59:56 +0000 | [diff] [blame] | 739 | - grenade-py3: |
| 740 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | a9c528f | 2018-09-10 18:50:45 +0200 | [diff] [blame] | 741 | - devstack-plugin-ceph-tempest: |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 742 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 743 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 744 | - puppet-openstack-integration-4-scenario001-tempest-centos-7: |
| 745 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 746 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 747 | - puppet-openstack-integration-4-scenario002-tempest-centos-7: |
| 748 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 749 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 750 | - puppet-openstack-integration-4-scenario003-tempest-centos-7: |
| 751 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 752 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 753 | - puppet-openstack-integration-4-scenario004-tempest-centos-7: |
| 754 | voting: false |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 755 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 756 | - neutron-tempest-dvr: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 757 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 758 | - tempest-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 759 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | a9cc6c1 | 2018-10-05 02:58:05 +0000 | [diff] [blame] | 760 | - interop-tempest-consistency: |
ghanshyam | a9cc6c1 | 2018-10-05 02:58:05 +0000 | [diff] [blame] | 761 | irrelevant-files: *tempest-irrelevant-files |
Jens Harbott | 4e07155 | 2018-07-05 12:24:51 +0000 | [diff] [blame] | 762 | - tempest-full-test-account-py3: |
| 763 | voting: false |
| 764 | irrelevant-files: *tempest-irrelevant-files |
| 765 | - tempest-full-test-account-no-admin-py3: |
| 766 | voting: false |
| 767 | irrelevant-files: *tempest-irrelevant-files |
Masayuki Igawa | de1153b | 2019-07-30 18:02:07 +0900 | [diff] [blame] | 768 | - openstack-tox-bashate |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 769 | gate: |
| 770 | jobs: |
Slawek Kaplonski | e5d93a4 | 2019-01-30 16:49:59 +0100 | [diff] [blame] | 771 | - tempest-slow-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 772 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 773 | - neutron-grenade-multinode: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 774 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | 01fd01a | 2018-10-10 21:28:25 +0200 | [diff] [blame] | 775 | - tempest-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 776 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 777 | - neutron-grenade: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 778 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | 109c4f1 | 2018-12-12 06:59:56 +0000 | [diff] [blame] | 779 | - grenade-py3: |
| 780 | irrelevant-files: *tempest-irrelevant-files |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 781 | - tempest-ipv6-only: |
| 782 | irrelevant-files: *tempest-irrelevant-files-2 |
ghanshyam | 1444606 | 2018-05-14 01:37:26 +0000 | [diff] [blame] | 783 | experimental: |
| 784 | jobs: |
ghanshyam | 1afb44b | 2018-05-25 00:53:48 +0300 | [diff] [blame] | 785 | - tempest-cinder-v2-api: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 786 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 787 | - tempest-all: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 788 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 789 | - legacy-tempest-dsvm-neutron-dvr-multinode-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 790 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 791 | - neutron-tempest-dvr-ha-multinode-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 792 | irrelevant-files: *tempest-irrelevant-files |
ghanshyam | ac6224e | 2018-10-16 11:09:59 +0000 | [diff] [blame] | 793 | - nova-tempest-v2-api: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 794 | irrelevant-files: *tempest-irrelevant-files |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 795 | - legacy-tempest-dsvm-lvm-multibackend: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 796 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | a9c528f | 2018-09-10 18:50:45 +0200 | [diff] [blame] | 797 | - devstack-plugin-ceph-tempest-py3: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 798 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | 390e4fa | 2018-10-10 21:53:12 +0200 | [diff] [blame] | 799 | - tempest-pg-full: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 800 | irrelevant-files: *tempest-irrelevant-files |
Andreas Jaeger | 20c181a | 2018-10-10 13:44:40 +0200 | [diff] [blame] | 801 | - tempest-full-py3-opensuse150: |
Andreas Jaeger | ff122de | 2018-09-23 17:18:49 +0200 | [diff] [blame] | 802 | irrelevant-files: *tempest-irrelevant-files |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 803 | periodic-stable: |
| 804 | jobs: |
ghanshyam | 5b98592 | 2019-03-26 19:56:31 +0000 | [diff] [blame] | 805 | - tempest-full-stein |
| 806 | - tempest-full-stein-py3 |
ghanshyam | fbde01e | 2018-08-24 10:54:53 +0000 | [diff] [blame] | 807 | - tempest-full-rocky |
| 808 | - tempest-full-rocky-py3 |
Andrea Frittoli (andreaf) | c9d2c38 | 2017-11-21 15:03:18 +0000 | [diff] [blame] | 809 | - tempest-full-queens |
| 810 | - tempest-full-queens-py3 |
Doug Hellmann | 6db0b78 | 2018-09-08 22:53:21 -0400 | [diff] [blame] | 811 | periodic: |
| 812 | jobs: |
Andreas Jaeger | d6e0474 | 2018-10-11 20:54:18 +0200 | [diff] [blame] | 813 | - tempest-all |
Andreas Jaeger | a8f64e3 | 2018-10-14 20:18:27 +0200 | [diff] [blame] | 814 | - tempest-full-oslo-master |