blob: b22294739fb4e9cd680f895113236dcc45ce8bab [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
Ghanshyam268017f2025-05-14 11:41:07 -070033 # this is a workaround for a packaging bug in ubuntu
34 # remove when https://bugs.launchpad.net/nova/+bug/2109592
35 # is resolved and oslo config is not a dep of the novnc deb
36 # via the defunct python3-novnc package.
37 - novnc/novnc
Ghanshyam Mann518e4262023-02-10 19:57:36 -060038 vars:
39 tox_envlist: full
Ghanshyam268017f2025-05-14 11:41:07 -070040 devstack_localrc:
41 NOVNC_FROM_PACKAGE: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -060042
43- job:
44 name: tempest-full-parallel
45 parent: tempest-full-py3
Ghanshyam Mann61f57332020-11-25 11:46:20 -060046 branches:
47 - master
48 description: |
49 Base integration test with Neutron networking.
50 It includes all scenarios as it was in the past.
51 This job runs all scenario tests in parallel!
52 timeout: 9000
53 vars:
54 tox_envlist: full-parallel
55 run_tempest_cleanup: true
56 run_tempest_dry_cleanup: true
Ghanshyam Mann05bc7f12021-02-10 12:09:06 -060057 devstack_localrc:
58 DEVSTACK_PARALLEL: True
Dan Smithd869e3a2023-02-13 14:14:52 -080059 MYSQL_REDUCE_MEMORY: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -060060
61- job:
62 name: tempest-full-py3-ipv6
63 parent: devstack-tempest-ipv6
Ghanshyam Mann61f57332020-11-25 11:46:20 -060064 description: |
65 Base integration test with Neutron networking, IPv6 and py3.
66 vars:
67 tox_envlist: full
Luigi Dino Tamagnone9052dfc2023-04-09 15:24:45 +000068 run_tempest_cleanup: true
69 run_tempest_cleanup_prefix: true
Ghanshyam Mann61f57332020-11-25 11:46:20 -060070 devstack_localrc:
71 USE_PYTHON3: true
72 FORCE_CONFIG_DRIVE: true
73 devstack_services:
74 s-account: false
75 s-container: false
76 s-object: false
77 s-proxy: false
78 # without Swift, c-bak cannot run (in the Gate at least)
79 c-bak: false
80
81- job:
Ghanshyam Mann61f57332020-11-25 11:46:20 -060082 name: tempest-tox-plugin-sanity-check
83 parent: tox
84 description: |
85 Run tempest plugin sanity check script using tox.
Ghanshyam Mann040070a2024-10-10 21:04:00 -070086 nodeset: ubuntu-noble
Ghanshyam Mann61f57332020-11-25 11:46:20 -060087 vars:
88 tox_envlist: plugin-sanity-check
89 timeout: 5000
90
91- job:
92 name: tempest-full-test-account-py3
93 parent: tempest-full-py3
94 description: |
95 This job runs the full set of tempest tests using pre-provisioned
96 credentials instead of dynamic credentials and py3.
97 Former names for this job were:
98 - legacy-tempest-dsvm-full-test-accounts
99 - legacy-tempest-dsvm-neutron-full-test-accounts
100 - legacy-tempest-dsvm-identity-v3-test-accounts
101 vars:
102 devstack_localrc:
103 TEMPEST_USE_TEST_ACCOUNTS: True
Ghanshyam Mann037ea4e2023-05-30 13:49:17 -0500104 # FIXME(gmann): Nova and Glance have enabled the new defaults and scope
105 # by default in devstack and pre provisioned account code and testing
106 # needs to be move to new RBAC design testing. Until we do that, let's
107 # run these jobs with old defaults.
108 NOVA_ENFORCE_SCOPE: false
109 GLANCE_ENFORCE_SCOPE: false
Ghanshyam Mann61f57332020-11-25 11:46:20 -0600110- job:
111 name: tempest-full-test-account-no-admin-py3
112 parent: tempest-full-test-account-py3
113 description: |
114 This job runs the full set of tempest tests using pre-provisioned
115 credentials and py3 without having an admin account.
116 Former name for this job was:
117 - legacy-tempest-dsvm-neutron-full-non-admin
118
119 vars:
120 devstack_localrc:
121 TEMPEST_HAS_ADMIN: False
Ghanshyam Mann83d13e52020-12-29 13:13:40 -0600122
123- job:
124 name: tempest-stestr-master
125 parent: devstack-tempest
126 description: |
127 Smoke integration test with stestr master.
128 This ensures that new stestr release does
129 not break Temepst.
130 vars:
131 tox_envlist: stestr-master
132 devstack_services:
133 s-account: false
134 s-container: false
135 s-object: false
136 s-proxy: false
137 c-bak: false