feat(tests): add red_review/blue_review states to test state machine

This commit is contained in:
kitos
2026-07-06 10:38:15 +02:00
parent af65681179
commit 58d1da93ce
3 changed files with 197 additions and 18 deletions
+4
View File
@@ -35,8 +35,12 @@ class TestState(str, enum.Enum):
draft = "draft"
# Assign red_executing = "red_executing"
red_executing = "red_executing"
# Red Lead reviews the operator's work before it queues for Blue Team
red_review = "red_review"
# Assign blue_evaluating = "blue_evaluating"
blue_evaluating = "blue_evaluating"
# Blue Lead reviews the operator's work before cross-validation
blue_review = "blue_review"
# Assign in_review = "in_review"
in_review = "in_review"
# Assign validated = "validated"