feat: make pytest files in chain style

This commit is contained in:
debugtalk
2020-06-02 14:37:37 +08:00
parent e1e7ba7bea
commit 6fa680502e
21 changed files with 937 additions and 526 deletions

View File

@@ -3,7 +3,7 @@ __description__ = "One-stop solution for HTTP(S) testing."
from httprunner.runner import HttpRunner
from httprunner.schema import TConfig, TStep
from httprunner.testcase import Config, Step, Request
from httprunner.testcase import Config, Step, RunRequest, RunTestCase
__all__ = [
"__version__",
@@ -13,5 +13,6 @@ __all__ = [
"TStep",
"Config",
"Step",
"Request",
"RunRequest",
"RunTestCase",
]