Merge "Export typing for TestCase class"

This commit is contained in:
Zuul 2021-09-29 15:45:46 +00:00 committed by Gerrit Code Review
commit 724cfbe3db
2 changed files with 3 additions and 0 deletions

View File

@ -132,6 +132,7 @@ get_test_case = _testcase.get_test_case
pop_test_case = _testcase.pop_test_case
push_test_case = _testcase.push_test_case
run_test = _testcase.run_test
TestCase = _testcase.TestCase
TestCasesManager = _testcase.TestCasesManager
min_seconds = _time.min_seconds

View File

@ -28,6 +28,8 @@ LOG = log.getLogger(__name__)
os.environ.setdefault('PYTHON', sys.executable)
TestCase = testtools.TestCase
class TestCaseEntry(typing.NamedTuple):
test_case: testtools.TestCase