config_schema
config_schema
¤
Classes:
Name | Description |
---|---|
PingPongConfig |
|
PingPongConfig
dataclass
¤
PingPongConfig(
name: str = "ping-pong",
type: ImplementationType = iut,
shadow_compatible: bool = True,
gperf_compatible: bool = False,
version: PingPongVersion = lambda: load_versions_from_files()(),
)
Bases: ImplementationConfig
Methods:
Name | Description |
---|---|
load_versions_from_files |
Load version configurations dynamically from YAML files. |
load_versions_from_files
staticmethod
¤
load_versions_from_files(
version_configs_dir: str = f"{Path(dirname(__file__))}/version_configs/",
) -> PingPongVersion
Load version configurations dynamically from YAML files.
Source code in .venv/lib/python3.10/site-packages/panther/plugins/services/iut/minip/ping_pong/config_schema.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|