]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: skip iscsi-gw nodes on jewel
authorGuillaume Abrioux <gabrioux@redhat.com>
Tue, 3 Jul 2018 07:35:38 +0000 (09:35 +0200)
committermergify[bot] <mergify[bot]@users.noreply.github.com>
Tue, 3 Jul 2018 15:22:07 +0000 (15:22 +0000)
On stable-3.0 we can't test iscsi-gw nodes on jewel because it's not
implemented yet.

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

index ebee2d1864e056220f6b678be56adac2adcfe167..7e49a948e3058db0a5d37b8ccccdb6363b2651bc 100644 (file)
@@ -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")