change: simplify testcase import

This commit is contained in:
debugtalk
2020-05-15 16:41:54 +08:00
parent af8ffb87fe
commit 2f93b2b73a
8 changed files with 26 additions and 36 deletions

View File

@@ -1,4 +1,15 @@
__version__ = "3.0.2"
__description__ = "One-stop solution for HTTP(S) testing."
__all__ = ["__version__", "__description__"]
from unittest import TestCase
from httprunner.runner import HttpRunner
from httprunner.schema import TConfig, TStep
__all__ = [
"__version__",
"__description__",
"HttpRunner",
"TConfig",
"TStep",
"TestCase",
]