| 35 | |
| 36 | |
| 37 | class FakePipeline(ToolModel, table=True): |
| 38 | class State(Enum): |
| 39 | PENDING = "pending" |
| 40 | RUNNING = "running" |
| 41 | FAILURE = "failure" |
| 42 | SUCCESS = "success" |
| 43 | |
| 44 | id: str = Field(primary_key=True) |
| 45 | started_at: Optional[datetime] |
| 46 | finished_at: Optional[datetime] |
| 47 | state: State |
no test coverage detected