blob: a24c73d21116004d49cb5741bd27d90fda9f20ed [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:
72 name: tempest-full-py3-opensuse15
73 parent: tempest-full-py3
74 nodeset: devstack-single-node-opensuse-15
75 description: |
76 Base integration test with Neutron networking and py36 running
77 on openSUSE Leap 15.x
78 voting: false
79
80- job:
Lee Yarwood0dba41c2021-06-23 10:47:44 +010081 name: tempest-full-py3-centos-8-stream
82 parent: tempest-full-py3
Ghanshyam5eb51dc2022-01-21 05:56:22 +000083 # TODO(gmann): Make this job non voting until bug#1957941 if fixed.
84 voting: false
Lee Yarwood0dba41c2021-06-23 10:47:44 +010085 nodeset: devstack-single-node-centos-8-stream
86 description: |
87 Base integration test with Neutron networking and py36 running
88 on CentOS 8 stream
89 vars:
90 # Required until bug/1949606 is resolved when using libvirt and QEMU
91 # >=5.0.0 with a [libvirt]virt_type of qemu (TCG).
92 configure_swap_size: 4096
93
94- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -060095 name: tempest-tox-plugin-sanity-check
96 parent: tox
97 description: |
98 Run tempest plugin sanity check script using tox.
99 nodeset: ubuntu-focal
100 vars:
101 tox_envlist: plugin-sanity-check
102 timeout: 5000
103
104- job:
105 name: tempest-full-test-account-py3
106 parent: tempest-full-py3
107 description: |
108 This job runs the full set of tempest tests using pre-provisioned
109 credentials instead of dynamic credentials and py3.
110 Former names for this job were:
111 - legacy-tempest-dsvm-full-test-accounts
112 - legacy-tempest-dsvm-neutron-full-test-accounts
113 - legacy-tempest-dsvm-identity-v3-test-accounts
114 vars:
115 devstack_localrc:
116 TEMPEST_USE_TEST_ACCOUNTS: True
117
118- job:
119 name: tempest-full-test-account-no-admin-py3
120 parent: tempest-full-test-account-py3
121 description: |
122 This job runs the full set of tempest tests using pre-provisioned
123 credentials and py3 without having an admin account.
124 Former name for this job was:
125 - legacy-tempest-dsvm-neutron-full-non-admin
126
127 vars:
128 devstack_localrc:
129 TEMPEST_HAS_ADMIN: False
Ghanshyam Mann83d13e52020-12-29 13:13:40 -0600130
131- job:
132 name: tempest-stestr-master
133 parent: devstack-tempest
134 description: |
135 Smoke integration test with stestr master.
136 This ensures that new stestr release does
137 not break Temepst.
138 vars:
139 tox_envlist: stestr-master
140 devstack_services:
141 s-account: false
142 s-container: false
143 s-object: false
144 s-proxy: false
145 c-bak: false