From 3a19f1cef1b90258f57bbc89160bdb2c06b1511f Mon Sep 17 00:00:00 2001 From: Pratik Surve Date: Tue, 26 Sep 2023 11:43:42 +0530 Subject: [PATCH] Add Polarion ID for Appset Workload test (#8325) Signed-off-by: prsurve --- .../regional-dr/test_failover_and_relocate.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tests/disaster-recovery/regional-dr/test_failover_and_relocate.py b/tests/disaster-recovery/regional-dr/test_failover_and_relocate.py index 402ed39f22e..5b514c5dc11 100644 --- a/tests/disaster-recovery/regional-dr/test_failover_and_relocate.py +++ b/tests/disaster-recovery/regional-dr/test_failover_and_relocate.py @@ -23,6 +23,9 @@ polarion_id_primary_up = "OCS-4430" polarion_id_primary_down = "OCS-4427" +polarion_id_primary_down_appset = "OCS-5009" +polarion_id_primary_up_appset = "OCS-5010" + if config.RUN.get("rdr_failover_via_ui"): polarion_id_primary_down = "OCS-4744" # TODO: Specify polarion id when available for test case where primary is up when failedover and relocate back. @@ -55,17 +58,13 @@ class TestFailoverAndRelocate: pytest.param( constants.APPLICATION_SET, False, - marks=pytest.mark.polarion_id( - polarion_id_primary_up - ), # TODO change polarion id + marks=pytest.mark.polarion_id(polarion_id_primary_up_appset), id="primary_up_appset", ), pytest.param( constants.APPLICATION_SET, True, - marks=pytest.mark.polarion_id( - polarion_id_primary_down - ), # TODO change polarion id + marks=pytest.mark.polarion_id(polarion_id_primary_down_appset), id="primary_down_appset", ), ],