9 lines
272 B
Python
9 lines
272 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class RunStatus(models.TextChoices):
|
|
RUNNING = "running", _("Running")
|
|
SUCCESS = "success", _("Success")
|
|
FAILED = "failed", _("Failed")
|
|
SKIPPED = "skipped", _("Skipped")
|