Amol Kahat c6cf679514
Added Mistral service type workflowv2
Tempest Mistrial tests are skipping in undercloud deployment.
Mistrial service type 'workflowv2' was missing.
In tempest.conf mistrial_service available is set to false
and mistrial tests got skipped.

Adding it fixes the issue.

Closes-Bug: #1867332

Story: 2007428
Task: 39055

Change-Id: Iaa4719ef935cb5ded9d85c7aeb853d46d90b7260
Signed-off-by: Amol Kahat <amolkahat@gmail.com>
2020-03-13 17:45:25 +05:30

28 lines
844 B
Python

# Copyright 2019 Red Hat, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from config_tempest.services.base import Service
class Workflowv2Service(Service):
@staticmethod
def get_service_type():
return ['workflow', 'workflowv2']
@staticmethod
def get_codename():
return 'mistral'