Add Queens and Caracal test suite

Related_Prod: PRODX-42792

Change-Id: Ie495791ac0f90c9580e2f90ab3b2b068df1c900c
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)