Add Queens and Caracal test suite
Related_Prod: PRODX-42792
Change-Id: Ie495791ac0f90c9580e2f90ab3b2b068df1c900c
diff --git a/testrail_bot/control/migrations/0012_alter_suitepassrate_suite_id.py b/testrail_bot/control/migrations/0012_alter_suitepassrate_suite_id.py
new file mode 100644
index 0000000..62e0193
--- /dev/null
+++ b/testrail_bot/control/migrations/0012_alter_suitepassrate_suite_id.py
@@ -0,0 +1,18 @@
+# Generated by Django 4.2.7 on 2024-05-31 09:49
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('control', '0011_cronperiodictask_task_name_and_more'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='suitepassrate',
+ name='suite_id',
+ field=models.CharField(choices=[('Tempest', (('10650', '[MCP2.0_QUEENS]Tempest'), ('10651', '[MCP2.0_ROCKY]Tempest'), ('10635', '[MCP2.0_STEIN]Tempest'), ('10653', '[MCP2.0_TRAIN]Tempest'), ('10710', '[MCP2.0_USSURI]Tempest'), ('10888', '[MCP2.0_VICTORIA]Tempest'), ('11167', '[MCP2.0_WALLABY]Tempest'), ('11188', '[MCP2.0_XENA]Tempest'), ('11170', '[MCP2.0_YOGA]Tempest'), ('11192', '[MCP2.0_ANTELOPE]Tempest'), ('11195', '[MCP2.0_CARACAL]Tempest'))), ('Stepler', (('10886', '[MCP2.0_USSURI]Stepler'), ('10887', '[MCP2.0_VICTORIA]Stepler'), ('11171', '[MCP2.0_YOGA]Stepler'), ('11193', '[MCP2.0_ANTELOPE]Stepler'), ('11196', '[MCP2.0_CARACAL]Stepler')))], max_length=20),
+ ),
+ ]
diff --git a/testrail_bot/control/models.py b/testrail_bot/control/models.py
index 02ff78b..a8a0910 100644
--- a/testrail_bot/control/models.py
+++ b/testrail_bot/control/models.py
@@ -92,6 +92,7 @@
class SuitePassRate(models.Model):
SUITE_CHOICES = [
("Tempest", (
+ ("10650", "[MCP2.0_QUEENS]Tempest"),
("10651", "[MCP2.0_ROCKY]Tempest"),
("10635", "[MCP2.0_STEIN]Tempest"),
("10653", "[MCP2.0_TRAIN]Tempest"),
@@ -100,13 +101,15 @@
("11167", "[MCP2.0_WALLABY]Tempest"),
("11188", "[MCP2.0_XENA]Tempest"),
("11170", "[MCP2.0_YOGA]Tempest"),
- ("11192", "[MCP2.0_ANTELOPE]Tempest"))
+ ("11192", "[MCP2.0_ANTELOPE]Tempest"),
+ ("11195", "[MCP2.0_CARACAL]Tempest"))
),
("Stepler", (
("10886", "[MCP2.0_USSURI]Stepler"),
("10887", "[MCP2.0_VICTORIA]Stepler"),
("11171", "[MCP2.0_YOGA]Stepler"),
- ("11193", "[MCP2.0_ANTELOPE]Stepler"))
+ ("11193", "[MCP2.0_ANTELOPE]Stepler"),
+ ("11196", "[MCP2.0_CARACAL]Stepler"))
),
]
suite_id = models.CharField(max_length=20, choices=SUITE_CHOICES)