-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(nimbus): add self testing qa statuses
Becuase * We want to better support feature owning teams with testing their own features * We also want to track when a team has tested their own feature to understand which features have any testing vs no testing This commit * Adds QA statuses for self testing with red, yellow, and green states fixes #12146
- Loading branch information
1 parent
1f8c38d
commit a34ce06
Showing
8 changed files
with
86 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
experimenter/experimenter/experiments/migrations/0278_alter_nimbusexperiment_qa_status.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by Django 5.1.5 on 2025-02-21 20:45 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("experiments", "0277_nimbusexperiment_firefox_labs_description_links"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="nimbusexperiment", | ||
name="qa_status", | ||
field=models.CharField( | ||
choices=[ | ||
("RED", "QA: Red"), | ||
("YELLOW", "QA: Yellow"), | ||
("GREEN", "QA: Green"), | ||
("SELF RED", "Self QA: Red"), | ||
("SELF YELLOW", "Self QA: Yellow"), | ||
("SELF GREEN", "Self QA: Green"), | ||
("NOT SET", "Not Set"), | ||
], | ||
default="NOT SET", | ||
max_length=255, | ||
verbose_name="QA Status", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -409,6 +409,9 @@ enum NimbusExperimentQAStatusEnum { | |
RED | ||
YELLOW | ||
GREEN | ||
SELF_RED | ||
SELF_YELLOW | ||
SELF_GREEN | ||
NOT_SET | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters