mirror of
https://github.com/httprunner/httprunner.git
synced 2026-06-01 22:09:35 +08:00
change: simplify testcase import
This commit is contained in:
@@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user