Merge "[train][goal] Define new 'mistral-devstack-tempest-ipv6-only' job"

This commit is contained in:
Zuul 2019-12-27 05:54:42 +00:00 committed by Gerrit Code Review
commit c062283294
2 changed files with 25 additions and 15 deletions

View File

@ -3,7 +3,7 @@
parent: devstack-tempest
pre-run: playbooks/tempest/pre.yaml
timeout: 9000
required-projects:
required-projects: &base_required_projects
- openstack/devstack
- openstack/devstack-gate
- openstack/heat
@ -12,9 +12,7 @@
- openstack/mistral-tempest-plugin
- openstack/python-mistralclient
- openstack/tempest
- openstack/zaqar
- openstack/python-zaqarclient
vars:
vars: &base_vars
tox_envlist: all
tempest_test_regex: mistral
devstack_localrc:
@ -38,7 +36,25 @@
devstack_plugins:
mistral: https://opendev.org/openstack/mistral
heat: https://opendev.org/openstack/heat
zaqar: https://opendev.org/openstack/zaqar
- job:
name: mistral-devstack-tempest-ipv6-only
parent: devstack-tempest-ipv6
description: |
Mistral devstack tempest tests job for IPv6-only deployment
pre-run: playbooks/tempest/pre.yaml
timeout: 9000
required-projects: *base_required_projects
vars: *base_vars
- job:
name: mistral-devstack-non-apache-tempest-ipv6-only
parent: mistral-devstack-tempest-ipv6-only
description: |
Mistral devstack non apache tempest tests job for IPv6-only deployment
vars:
devstack_localrc:
MISTRAL_USE_MOD_WSGI: false
- job:
name: mistral-devstack
@ -66,6 +82,8 @@
check:
jobs:
- mistral-devstack
- mistral-devstack-tempest-ipv6-only
- mistral-devstack-non-apache-tempest-ipv6-only
- mistral-devstack-non-apache:
branches: ^(?!stable/(newton|ocata)).*$
- mistral-devstack-kombu:
@ -74,5 +92,7 @@
queue: mistral
jobs:
- mistral-devstack
- mistral-devstack-tempest-ipv6-only
- mistral-devstack-non-apache-tempest-ipv6-only
- mistral-devstack-non-apache
- mistral-devstack-kombu

View File

@ -107,13 +107,3 @@ class OpenStackActionsTestsV2(base.TestCase):
executed_task = self.client.get_wf_tasks(wf_name)[-1]
self.assertEqual('SUCCESS', executed_task['state'])
@decorators.attr(type='openstack')
@decorators.idempotent_id('6f000ae8-3f41-49bd-b7a7-ad2256d80076')
def test_zaqar_actions(self):
wf_name = self.wb['name'] + '.zaqar'
_, execution = self.client.create_execution(wf_name)
self.client.wait_execution_success(execution)
executed_task = self.client.get_wf_tasks(wf_name)[-1]
self.assertEqual('SUCCESS', executed_task['state'])