Skip to content

Commit

Permalink
skip LSO add capacity tests on stretchcluster acceptance (#9789)
Browse files Browse the repository at this point in the history
Signed-off-by: Mahesh Shetty <[email protected]>
  • Loading branch information
mashetty330 authored May 14, 2024
1 parent 1238fa7 commit 675fcc7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ocs_ci/framework/pytest_customization/marks.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,11 @@
reason="Test will not run on disconnected clusters",
)

skipif_stretch_cluster = pytest.mark.skipif(
config.DEPLOYMENT.get("arbiter_deployment") is True,
reason="Test will not run on stretch cluster",
)

skipif_proxy_cluster = pytest.mark.skipif(
config.DEPLOYMENT.get("proxy") is True,
reason="Test will not run on proxy clusters",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
skipif_no_lso,
skipif_lso,
skipif_managed_service,
skipif_stretch_cluster,
skipif_hci_provider_and_client,
brown_squad,
)
Expand Down Expand Up @@ -159,6 +160,7 @@ def test_add_capacity_ui(self, reduce_and_resume_cluster_load):
@skipif_managed_service
@skipif_hci_provider_and_client
@skipif_no_lso
@skipif_stretch_cluster
class TestAddCapacityLSO(ManageTest):
"""
Add capacity on lso cluster
Expand Down

0 comments on commit 675fcc7

Please sign in to comment.