blob: 5b6b702d5e3ebc0cb70ab18d9e5f7d6537456f49 [file] [log] [blame]
Ghanshyam Mann61f57332020-11-25 11:46:20 -06001# NOTE(gmann): This file includes all tempest specific jobs definition which
2# are supposed to be run by Tempest gate only.
3- job:
4 name: tempest-full-oslo-master
5 parent: tempest-full-py3
6 description: |
7 Integration test using current git of oslo libs.
8 This ensures that when oslo libs get released that they
9 do not break OpenStack server projects.
10
11 Former name for this job was
12 periodic-tempest-dsvm-oslo-latest-full-master.
13 timeout: 10800
14 required-projects:
15 - opendev.org/openstack/oslo.cache
16 - opendev.org/openstack/oslo.concurrency
17 - opendev.org/openstack/oslo.config
18 - opendev.org/openstack/oslo.context
19 - opendev.org/openstack/oslo.db
20 - opendev.org/openstack/oslo.i18n
21 - opendev.org/openstack/oslo.log
22 - opendev.org/openstack/oslo.messaging
23 - opendev.org/openstack/oslo.middleware
24 - opendev.org/openstack/oslo.policy
25 - opendev.org/openstack/oslo.privsep
26 - opendev.org/openstack/oslo.reports
27 - opendev.org/openstack/oslo.rootwrap
28 - opendev.org/openstack/oslo.serialization
29 - opendev.org/openstack/oslo.service
30 - opendev.org/openstack/oslo.utils
31 - opendev.org/openstack/oslo.versionedobjects
32 - opendev.org/openstack/oslo.vmware
33
34- job:
35 name: tempest-full-parallel
36 parent: tempest-full-py3
37 voting: false
38 branches:
39 - master
40 description: |
41 Base integration test with Neutron networking.
42 It includes all scenarios as it was in the past.
43 This job runs all scenario tests in parallel!
44 timeout: 9000
45 vars:
46 tox_envlist: full-parallel
47 run_tempest_cleanup: true
48 run_tempest_dry_cleanup: true
Ghanshyam Mann05bc7f12021-02-10 12:09:06 -060049 devstack_localrc:
50 DEVSTACK_PARALLEL: True
Ghanshyam Mann61f57332020-11-25 11:46:20 -060051
52- job:
53 name: tempest-full-py3-ipv6
54 parent: devstack-tempest-ipv6
55 branches: ^(?!stable/ocata).*$
56 description: |
57 Base integration test with Neutron networking, IPv6 and py3.
58 vars:
59 tox_envlist: full
60 devstack_localrc:
61 USE_PYTHON3: true
62 FORCE_CONFIG_DRIVE: true
63 devstack_services:
64 s-account: false
65 s-container: false
66 s-object: false
67 s-proxy: false
68 # without Swift, c-bak cannot run (in the Gate at least)
69 c-bak: false
70
71- job:
Lee Yarwood0dba41c2021-06-23 10:47:44 +010072 name: tempest-full-py3-centos-8-stream
73 parent: tempest-full-py3
Ghanshyam5eb51dc2022-01-21 05:56:22 +000074 # TODO(gmann): Make this job non voting until bug#1957941 if fixed.
75 voting: false
Lee Yarwood0dba41c2021-06-23 10:47:44 +010076 nodeset: devstack-single-node-centos-8-stream
77 description: |
78 Base integration test with Neutron networking and py36 running
79 on CentOS 8 stream
80 vars:
81 # Required until bug/1949606 is resolved when using libvirt and QEMU
82 # >=5.0.0 with a [libvirt]virt_type of qemu (TCG).
83 configure_swap_size: 4096
84
85- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -060086 name: tempest-tox-plugin-sanity-check
87 parent: tox
88 description: |
89 Run tempest plugin sanity check script using tox.
90 nodeset: ubuntu-focal
91 vars:
92 tox_envlist: plugin-sanity-check
93 timeout: 5000
94
95- job:
96 name: tempest-full-test-account-py3
97 parent: tempest-full-py3
98 description: |
99 This job runs the full set of tempest tests using pre-provisioned
100 credentials instead of dynamic credentials and py3.
101 Former names for this job were:
102 - legacy-tempest-dsvm-full-test-accounts
103 - legacy-tempest-dsvm-neutron-full-test-accounts
104 - legacy-tempest-dsvm-identity-v3-test-accounts
105 vars:
106 devstack_localrc:
107 TEMPEST_USE_TEST_ACCOUNTS: True
108
109- job:
110 name: tempest-full-test-account-no-admin-py3
111 parent: tempest-full-test-account-py3
112 description: |
113 This job runs the full set of tempest tests using pre-provisioned
114 credentials and py3 without having an admin account.
115 Former name for this job was:
116 - legacy-tempest-dsvm-neutron-full-non-admin
117
118 vars:
119 devstack_localrc:
120 TEMPEST_HAS_ADMIN: False
Ghanshyam Mann83d13e52020-12-29 13:13:40 -0600121
122- job:
123 name: tempest-stestr-master
124 parent: devstack-tempest
125 description: |
126 Smoke integration test with stestr master.
127 This ensures that new stestr release does
128 not break Temepst.
129 vars:
130 tox_envlist: stestr-master
131 devstack_services:
132 s-account: false
133 s-container: false
134 s-object: false
135 s-proxy: false
136 c-bak: false