From d36ced2b8bbad8cf773c396fbf75315e43e349ba Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Tue, 3 Jul 2018 09:35:38 +0200 Subject: [PATCH] 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 --- tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) 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") -- 2.39.5