12 lines
228 B
Python
Raw Normal View History

2024-06-26 15:45:06 -04:00
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from enum import Enum
class PipelineJobState(Enum):
SCHEDULED = "scheduled"
RUNNING = "running"
FAILED = "failed"
COMPLETE = "complete"