mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 17:19:54 +08:00
20 lines
506 B
Python
20 lines
506 B
Python
__version__ = "3.1.8-beta"
|
|
__description__ = "One-stop solution for HTTP(S) testing."
|
|
|
|
# import firstly for monkey patch if needed
|
|
from httprunner.ext.locust import main_locusts
|
|
from httprunner.parser import parse_parameters as Parameters
|
|
from httprunner.runner import HttpRunner
|
|
from httprunner.testcase import Config, Step, RunRequest, RunTestCase
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__description__",
|
|
"HttpRunner",
|
|
"Config",
|
|
"Step",
|
|
"RunRequest",
|
|
"RunTestCase",
|
|
"Parameters",
|
|
]
|