blob: 3a342388b33b141b56baca467d0a291e2637c3d4 [file] [log] [blame]
Rabi Mishra477efc92015-07-31 13:01:45 +05301# Licensed under the Apache License, Version 2.0 (the "License"); you may
2# not use this file except in compliance with the License. You may obtain
3# a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10# License for the specific language governing permissions and limitations
11# under the License.
12
13from heat_integrationtests.common import test
14
15
16class FunctionalTestsBase(test.HeatIntegrationTest):
17
18 def setUp(self):
19 super(FunctionalTestsBase, self).setUp()
20 self.check_skip_test()
21 self.client = self.orchestration_client
22
23 def check_skip_test(self):
24 test_name = self.__class__.__name__
25 test_skipped = (self.conf.skip_functional_test_list and
26 test_name in self.conf.skip_functional_test_list)
27 if self.conf.skip_functional_tests or test_skipped:
28 self.skipTest('Test disabled in conf, skipping')