mirror of https://github.com/ceph/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 <gabrioux@ibm.com>pull/7510/head
parent
7d5792fda6
commit
adfeb81190
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue