MCPcopy Index your code
hub / github.com/github/spec-kit / RunStatus

Class RunStatus

src/specify_cli/workflows/base.py:28–36  ·  view source on GitHub ↗

Status of a workflow run.

Source from the content-addressed store, hash-verified

26
27
28class RunStatus(str, Enum):
29 """Status of a workflow run."""
30
31 CREATED = "created"
32 RUNNING = "running"
33 PAUSED = "paused"
34 COMPLETED = "completed"
35 FAILED = "failed"
36 ABORTED = "aborted"
37
38
39@dataclass

Callers 1

loadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected