]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: skip tests for nfs nodes when release is jewel
authorGuillaume Abrioux <gabrioux@redhat.com>
Fri, 6 Oct 2017 10:49:39 +0000 (12:49 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Fri, 6 Oct 2017 10:49:39 +0000 (12:49 +0200)
nfs nodes are not deployed on jewel so we should skip the tests on them.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
tests/conftest.py

index 851bf075843aa668bbdb175ad148f14adbba8138..2770de3ee7c284cc04925afdbbf480116bd779ef 100644 (file)
@@ -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")