From 7594f42b7763c04a70d3a5b22e8c8891e9b9fad2 Mon Sep 17 00:00:00 2001 From: am-agrawa Date: Fri, 7 Mar 2025 00:00:13 +0530 Subject: [PATCH] SKip test_2_nodes_different_types for compact mode deployments Signed-off-by: am-agrawa --- tests/functional/z_cluster/nodes/test_nodes_maintenance.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/functional/z_cluster/nodes/test_nodes_maintenance.py b/tests/functional/z_cluster/nodes/test_nodes_maintenance.py index 2b741b6a363..1b95a58c5c2 100644 --- a/tests/functional/z_cluster/nodes/test_nodes_maintenance.py +++ b/tests/functional/z_cluster/nodes/test_nodes_maintenance.py @@ -27,7 +27,11 @@ ) from ocs_ci.ocs.cluster import validate_existence_of_blocking_pdb from ocs_ci.framework import config -from ocs_ci.framework.pytest_customization.marks import brown_squad, skipif_rosa_hcp +from ocs_ci.framework.pytest_customization.marks import ( + brown_squad, + skipif_rosa_hcp, + skipif_compact_mode, +) from ocs_ci.framework.testlib import ( tier1, tier2, @@ -311,6 +315,7 @@ def test_2_nodes_maintenance_same_type(self, nodes_type): @tier2 @pytest.mark.polarion_id("OCS-1274") + @skipif_compact_mode def test_2_nodes_different_types( self, pvc_factory, pod_factory, bucket_factory, rgw_bucket_factory ):