From 7192dc863e46e12263c17ab6b23e97b031cd2316 Mon Sep 17 00:00:00 2001 From: Sidhant Agrawal Date: Thu, 11 Jul 2024 19:00:36 +0530 Subject: [PATCH] Skip tests in test_mgr_pods.py for external mode cluster Signed-off-by: Sidhant Agrawal --- tests/functional/pod_and_daemons/test_mgr_pods.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/pod_and_daemons/test_mgr_pods.py b/tests/functional/pod_and_daemons/test_mgr_pods.py index d18db899dd1..7ebdf23428a 100644 --- a/tests/functional/pod_and_daemons/test_mgr_pods.py +++ b/tests/functional/pod_and_daemons/test_mgr_pods.py @@ -7,6 +7,7 @@ post_upgrade, post_ocs_upgrade, polarion_id, + skipif_external_mode, ) from ocs_ci.ocs import exceptions from ocs_ci.ocs.resources import pod @@ -17,6 +18,7 @@ @tier4a @skipif_ocs_version("<4.15") +@skipif_external_mode @post_upgrade @post_ocs_upgrade class TestMgrPods(BaseTest):