From 680ec8758e414683ffe5836d94aaf78f3ba4c8a1 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Fri, 6 Oct 2017 12:49:39 +0200 Subject: [PATCH] tests: skip tests for nfs nodes when release is jewel nfs nodes are not deployed on jewel so we should skip the tests on them. 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 851bf0758..2770de3ee 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -39,6 +39,9 @@ def node(host, request): if node_type == "mgrs" and ceph_stable_release == "jewel": pytest.skip("mgr nodes can not be tested with ceph release jewel") + if node_type == "nfss" and ceph_stable_release == "jewel": + pytest.skip("nfs nodes can not be tested with ceph release jewel") + journal_collocation_test = ansible_vars.get("osd_scenario") == "collocated" if request.node.get_marker("journal_collocation") and not journal_collocation_test: pytest.skip("Scenario is not using journal collocation") -- 2.39.5