
Add a fixture to replace the code in the test base class that was looking at OS_TEST_TIMEOUT and setting up a fixtures.Timeout instance. Blueprint oslotest-refactor-test-base-class Change-Id: I0432ac28772395be15db539f3797b257eb8933ca
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# 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.
|
|
|
|
import fixtures
|
|
|
|
import os
|
|
|
|
|
|
class Timeout(fixtures.Fixture):
|
|
"""Set the maximum length of time for the test to run.
|
|
|
|
Uses OS_TEST_TIMEOUT to get the timeout.
|
|
|
|
"""
|
|
|
|
def setUp(self):
|
|
super(Timeout, self).setUp()
|
|
test_timeout = os.environ.get('OS_TEST_TIMEOUT', 0)
|
|
try:
|
|
test_timeout = int(test_timeout)
|
|
except ValueError:
|
|
# If timeout value is invalid do not set a timeout.
|
|
test_timeout = 0
|
|
if test_timeout > 0:
|
|
self.useFixture(fixtures.Timeout(test_timeout, gentle=True))
|