blob: 13024acecc25bb2f7d5f3a64ac8fe04cb88b2d15 [file] [log] [blame]
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +01001- job:
2 name: devstack-tempest
3 parent: devstack
4 description: Base Tempest job.
5 required-projects:
6 - openstack/tempest
7 timeout: 7200
8 roles:
9 - zuul: openstack-dev/devstack
10 vars:
11 devstack_services:
James E. Blaird5980092018-01-24 16:43:27 -080012 tempest: true
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010013 run: playbooks/devstack-tempest.yaml
Andrea Frittoli (andreaf)74810552017-10-03 18:56:56 +010014 post-run: playbooks/post-tempest.yaml
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +010015
Chandan Kumarcf576b22017-10-23 17:43:36 +053016- job:
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000017 name: tempest-full
18 parent: devstack-tempest
James E. Blaire3b38842018-01-03 17:26:16 -080019 # This currently only works on the master branch.
Armando Migliaccioff3047f2018-01-04 07:55:08 -080020 # NOTE(andreaf) Only run on master for now.
21 # The negative lookup is redudant but it's a
22 # reminder that we don't want the job running there.
23 branches: ^(?!driverfixes/)master$
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000024 description: |
25 Base integration test with Neutron networking and py27.
26 Former names for this job where:
27 * legacy-tempest-dsvm-neutron-full
28 * gate-tempest-dsvm-neutron-full-ubuntu-xenial
29 vars:
Andreas Jaegerba2f4792018-01-12 16:48:52 +010030 tox_envlist: full
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000031 devstack_localrc:
James E. Blaird5980092018-01-24 16:43:27 -080032 ENABLE_FILE_INJECTION: true
Andrea Frittoli (andreaf)8e9e7f72017-11-21 14:59:47 +000033
34- job:
Andrea Frittolic4377ef2017-11-30 12:00:38 +000035 name: tempest-full-py3
Andrea Frittoli85076bd2018-01-24 10:19:40 +000036 parent: devstack-tempest
37 branches: ^(?!driverfixes/)master$
38 description: |
39 Base integration test with Neutron networking and py3.
40 Former names for this job where:
41 * legacy-tempest-dsvm-py35
42 * gate-tempest-dsvm-py35
Andrea Frittolic4377ef2017-11-30 12:00:38 +000043 vars:
Andrea Frittoli85076bd2018-01-24 10:19:40 +000044 tox_envlist: full
Andrea Frittolic4377ef2017-11-30 12:00:38 +000045 devstack_localrc:
46 USE_PYTHON3: True
47 FORCE_CONFIG_DRIVE: True
Andrea Frittolic4377ef2017-11-30 12:00:38 +000048 devstack_services:
49 s-account: false
50 s-container: false
51 s-object: false
52 s-proxy: false
53 # without Swift, c-bak cannot run (in the Gate at least)
54 c-bak: false
55
56- job:
Chandan Kumarcf576b22017-10-23 17:43:36 +053057 name: tempest-tox-plugin-sanity-check
58 parent: tox
59 description: |
60 Run tempest plugin sanity check script using tox.
61 nodeset: ubuntu-xenial
62 vars:
63 tox_envlist: plugin-sanity-check
64 voting: false
65 timeout: 5000
66 required-projects:
67 - openstack/almanach
68 - openstack/aodh
69 - openstack/barbican-tempest-plugin
70 - openstack/ceilometer
71 - openstack/cinder
72 - openstack/congress
73 - openstack/designate-tempest-plugin
74 - openstack/ec2-api
75 - openstack/freezer
76 - openstack/freezer-api
77 - openstack/freezer-tempest-plugin
78 - openstack/gce-api
79 - openstack/glare
80 - openstack/heat
81 - openstack/intel-nfv-ci-tests
82 - openstack/ironic
83 - openstack/ironic-inspector
84 - openstack/keystone-tempest-plugin
85 - openstack/kingbird
86 - openstack/kuryr-tempest-plugin
87 - openstack/magnum
88 - openstack/magnum-tempest-plugin
89 - openstack/manila
90 - openstack/manila-tempest-plugin
91 - openstack/mistral
92 - openstack/mogan
93 - openstack/monasca-api
94 - openstack/monasca-log-api
95 - openstack/murano
96 - openstack/networking-bgpvpn
97 - openstack/networking-cisco
98 - openstack/networking-fortinet
99 - openstack/networking-generic-switch
100 - openstack/networking-l2gw
101 - openstack/networking-midonet
102 - openstack/networking-plumgrid
103 - openstack/networking-sfc
104 - openstack/neutron
105 - openstack/neutron-dynamic-routing
106 - openstack/neutron-fwaas
107 - openstack/neutron-lbaas
108 - openstack/neutron-tempest-plugin
109 - openstack/neutron-vpnaas
110 - openstack/nova-lxd
111 - openstack/novajoin-tempest-plugin
Bar RHca15fe02017-12-20 02:40:52 +0200112 - openstack/octavia-tempest-plugin
Chandan Kumarcf576b22017-10-23 17:43:36 +0530113 - openstack/oswin-tempest-plugin
114 - openstack/panko
115 - openstack/patrole
116 - openstack/qinling
117 - openstack/requirements
118 - openstack/sahara-tests
119 - openstack/senlin
120 - openstack/senlin-tempest-plugin
121 - openstack/tap-as-a-service
122 - openstack/tempest-horizon
123 - openstack/trio2o
124 - openstack/trove
125 - openstack/valet
126 - openstack/vitrage
127 - openstack/vmware-nsx-tempest-plugin
128 - openstack/watcher-tempest-plugin
129 - openstack/zaqar-tempest-plugin
130 - openstack/zun-tempest-plugin
131
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100132- project:
Andrea Frittoli (andreaf)7d5445d2017-10-03 18:43:05 +0100133 check:
134 jobs:
135 - devstack-tempest:
136 files:
137 - ^playbooks/
138 - ^roles/
139 - ^.zuul.yaml$
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000140 - tempest-full-py3:
Andrea Frittolic4377ef2017-11-30 12:00:38 +0000141 irrelevant-files:
142 - ^(test-|)requirements.txt$
143 - ^.*\.rst$
144 - ^doc/.*$
145 - ^etc/.*$
146 - ^releasenotes/.*$
147 - ^setup.cfg$
148 - ^tempest/hacking/.*$
149 - ^tempest/tests/.*$
Chandan Kumarcf576b22017-10-23 17:43:36 +0530150 - tempest-tox-plugin-sanity-check