MCPcopy Create free account
hub / github.com/apache/devlake / FakePipeline

Class FakePipeline

backend/python/test/fakeplugin/fakeplugin/models.py:37–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35
36
37class 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

Callers 1

Calls 1

FieldFunction · 0.90

Tested by

no test coverage detected