66071d4cc5
The barbican-tempest-plugin gate has stopped working after export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1 was removed in Ibef3f9a135f14727bf57c29e766f838d7da56c68 since oslotest is no longer installed. This patch uses the tempest.lib base test instead of using the oslotest base test. Change-Id: Ifdf8b426c21e4b3a51f97cbc3d95eb842eb04515
21 lines
690 B
Python
21 lines
690 B
Python
# Copyright 2016 SAP SE
|
|
#
|
|
# 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 tempest.lib import base
|
|
|
|
|
|
class TestCase(base.BaseTestCase):
|
|
|
|
"""Test case base class for all unit tests."""
|