Skip to content

Commit

Permalink
tests: skip ceph_crash and ceph_exporter tests post upgrade
Browse files Browse the repository at this point in the history
as stable-8.0 is dropping iscsigws support, after the upgrade to reef
from quincy these tests should be skipped.

Signed-off-by: Guillaume Abrioux <[email protected]>
  • Loading branch information
guits committed Mar 14, 2024
1 parent a9e175b commit 95352fb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,12 @@ def node(host, request):
if request.node.get_closest_marker("dashboard") and sanitized_group_names == ['clients']:
pytest.skip('Not a valid test for client node')

if request.node.get_closest_marker("ceph_crash") and sanitized_group_names == ['iscsigws']:
pytest.skip('Not a valid test for iscsigws node')

if request.node.get_closest_marker("ceph_exporter") and sanitized_group_names == ['iscsigws']:
pytest.skip('Not a valid test for iscsigws node')

data = dict(
vars=ansible_vars,
docker=docker,
Expand Down

0 comments on commit 95352fb

Please sign in to comment.