mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-17 01:57:36 +08:00
18 lines
318 B
Python
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]
|