8 lines
157 B
Python
8 lines
157 B
Python
from pydantic.dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class TestConfig:
|
|
test_root: str
|
|
project_root_path: str
|
|
test_framework: str
|