]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
tests: fix a typo in testinfra for iscsigws and jewel scenario
authorGuillaume Abrioux <gabrioux@redhat.com>
Mon, 30 Jul 2018 13:58:27 +0000 (15:58 +0200)
committerSébastien Han <seb@redhat.com>
Mon, 13 Aug 2018 10:24:59 +0000 (12:24 +0200)
group name for iscsi-gw nodes in testing is `iscsi-gws`.

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

index 23fbdedcdb38a2e029325d47a9b7bb9ac0bf3b9a..1c1a2285f390b8574bb297df6903ed8ccca11b2c 100644 (file)
@@ -60,7 +60,7 @@ def node(host, request):
     if "nfss" in group_names and ceph_stable_release == "jewel":
         pytest.skip("nfs nodes can not be tested with ceph release jewel")
 
-    if group_names == ["iscsigws"] and ceph_stable_release == "jewel":
+    if group_names == ["iscsi-gws"] and ceph_stable_release == "jewel":
         pytest.skip("iscsigws nodes can not be tested with ceph release jewel")  # noqa E501
 
     if request.node.get_closest_marker("from_luminous") and ceph_release_num[ceph_stable_release] < ceph_release_num['luminous']:  # noqa E501