mirror of https://github.com/ceph/ceph-ansible.git
tests: update skip messages in conftest.py
Signed-off-by: Andrew Schoen <aschoen@redhat.com>pull/1150/head
parent
d79188c8b6
commit
1abbc948d9
|
@ -14,10 +14,10 @@ def node(Ansible, Interface, Command, request):
|
||||||
ansible_vars = Ansible.get_variables()
|
ansible_vars = Ansible.get_variables()
|
||||||
node_type = ansible_vars["group_names"][0]
|
node_type = ansible_vars["group_names"][0]
|
||||||
if not request.node.get_marker(node_type) and not request.node.get_marker('all'):
|
if not request.node.get_marker(node_type) and not request.node.get_marker('all'):
|
||||||
pytest.skip("Not a valid test for node type")
|
pytest.skip("Not a valid test for node type: %s" % node_type)
|
||||||
|
|
||||||
if request.node.get_marker("journal_collocation") and not ansible_vars.get("journal_collocation"):
|
if request.node.get_marker("journal_collocation") and not ansible_vars.get("journal_collocation"):
|
||||||
pytest.skip("Skipping because scenario is not using journal collocation")
|
pytest.skip("Scenario is not using journal collocation")
|
||||||
|
|
||||||
osd_ids = []
|
osd_ids = []
|
||||||
if node_type == "osds":
|
if node_type == "osds":
|
||||||
|
|
Loading…
Reference in New Issue