From: Guillaume Abrioux Date: Thu, 14 Mar 2024 00:12:24 +0000 (+0100) Subject: tests: skip ceph_crash and ceph_exporter tests post upgrade X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=adfeb811906b0ffc8754737fcbfc8d28bc7b46bf;p=ceph-ansible.git tests: skip ceph_crash and ceph_exporter tests post upgrade as stable-8.0 is dropping iscsigws support, after the upgrade to reef from quincy these tests should be skipped. Signed-off-by: Guillaume Abrioux --- diff --git a/tests/conftest.py b/tests/conftest.py index 20e871d1a..69de7ac69 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -188,6 +188,12 @@ def node(host, request): if request.node.get_closest_marker("dashboard") and sanitized_group_names == ['clients']: pytest.skip('Not a valid test for client node') + if request.node.get_closest_marker("ceph_crash") and sanitized_group_names == ['iscsigws']: + pytest.skip('Not a valid test for iscsigws node') + + if request.node.get_closest_marker("ceph_exporter") and sanitized_group_names == ['iscsigws']: + pytest.skip('Not a valid test for iscsigws node') + data = dict( vars=ansible_vars, docker=docker,