Why each selected test/script path was included.
| 117 | |
| 118 | |
| 119 | class SelectionProvenance(BaseModel): |
| 120 | """Why each selected test/script path was included.""" |
| 121 | |
| 122 | model_config = ConfigDict(extra="forbid") |
| 123 | |
| 124 | pytest: dict[str, list[str]] = Field(default_factory=dict) |
| 125 | scripts: dict[str, list[str]] = Field(default_factory=dict) |
| 126 | |
| 127 | |
| 128 | class SelectorResult(BaseModel): |
no outgoing calls