mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-14 14:17:38 +08:00
14 lines
271 B
Python
14 lines
271 B
Python
__version__ = "3.0.2"
|
|
__description__ = "One-stop solution for HTTP(S) testing."
|
|
|
|
from httprunner.runner import HttpRunner
|
|
from httprunner.schema import TConfig, TStep
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__description__",
|
|
"HttpRunner",
|
|
"TConfig",
|
|
"TStep",
|
|
]
|