From: Guillaume Abrioux Date: Tue, 3 Jul 2018 07:35:38 +0000 (+0200) Subject: tests: skip iscsi-gw nodes on jewel X-Git-Tag: v3.0.38~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d36ced2b8bbad8cf773c396fbf75315e43e349ba;p=ceph-ansible.git tests: skip iscsi-gw nodes on jewel On stable-3.0 we can't test iscsi-gw nodes on jewel because it's not implemented yet. Signed-off-by: Guillaume Abrioux --- diff --git a/tests/conftest.py b/tests/conftest.py index ebee2d186..7e49a948e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -48,6 +48,9 @@ def node(host, request): if node_type == "nfss" and ceph_stable_release == "jewel": pytest.skip("nfs nodes can not be tested with ceph release jewel") + if node_type == "iscsi-gws" and ceph_stable_release == "jewel": + pytest.skip("iscsi-gw nodes can not be tested with ceph release jewel") + if request.node.get_marker("from_luminous") and ceph_release_num[ceph_stable_release] < ceph_release_num['luminous']: pytest.skip("This test is only valid for releases starting from Luminous and above")