Skip to content

Commit

Permalink
Merge pull request #8683 from openshift-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…8680-to-release-4.11

[release-4.11] Fix skipif_ui_not_support function for IBM cloud IPI
  • Loading branch information
vavuthu authored Jan 12, 2024
2 parents c52dbbb + f800391 commit ca2d3ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ocs_ci/utility/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2963,7 +2963,11 @@ def skipif_ui_not_support(ui_test):

ocp_version = get_running_ocp_version()
if (
config.ENV_DATA["platform"].lower() == constants.IBMCLOUD_PLATFORM
(
# Skip for IMB Cloud managed AKA ROKS
config.ENV_DATA["platform"].lower() == constants.IBMCLOUD_PLATFORM
and config.ENV_DATA["deployment_type"].lower() == "managed"
)
or config.ENV_DATA["platform"].lower() == constants.OPENSHIFT_DEDICATED_PLATFORM
or config.ENV_DATA["platform"].lower() == constants.ROSA_PLATFORM
):
Expand Down

0 comments on commit ca2d3ee

Please sign in to comment.