Files
httprunner/httprunner/schema/testsuite.py
2020-04-09 21:44:37 +08:00

18 lines
318 B
Python

from typing import List, Text
from pydantic import BaseModel
from httprunner.schema import common
class TestCase(BaseModel):
name: common.Name
testcase: Text
weight: int = 1
variables: common.Variables = {}
class TestSuite(BaseModel):
config: common.TestsConfig
testcases: List[TestCase]