From: Guillaume Abrioux Date: Mon, 30 Jul 2018 13:58:27 +0000 (+0200) Subject: tests: fix a typo in testinfra for iscsigws and jewel scenario X-Git-Tag: v3.1.0rc18~28 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=32ef06e80f67025a764b0c4730608e122154ea64;p=ceph-ansible.git tests: fix a typo in testinfra for iscsigws and jewel scenario group name for iscsi-gw nodes in testing is `iscsi-gws`. Signed-off-by: Guillaume Abrioux --- diff --git a/tests/conftest.py b/tests/conftest.py index 23fbdedcd..1c1a2285f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -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