Skip to content

Commit 3ad50fd

Browse files
committed
[IUO] Remove jira CNV-71823
Signed-off-by: Harel Meir <[email protected]>
1 parent 78a01cf commit 3ad50fd

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

tests/install_upgrade_operators/conftest.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@
2121
get_resource_by_name,
2222
get_resource_from_module_name,
2323
)
24-
from utilities.constants import HCO_BEARER_AUTH, HPP_POOL
24+
from utilities.constants import HPP_POOL
2525
from utilities.hco import ResourceEditorValidateHCOReconcile, get_hco_version
2626
from utilities.infra import (
2727
get_daemonset_by_name,
2828
get_deployment_by_name,
2929
get_pod_by_name_prefix,
3030
)
31-
from utilities.jira import is_jira_open
3231
from utilities.operator import (
3332
disable_default_sources_in_operatorhub,
3433
get_machine_config_pools_conditions,
@@ -214,8 +213,6 @@ def related_object_from_hco_status(
214213
kind_name = list(cnv_related_object_matrix__function__.values())[0]
215214
related_object_name = list(cnv_related_object_matrix__function__.keys())[0]
216215

217-
if related_object_name == HCO_BEARER_AUTH and is_jira_71823_open:
218-
pytest.xfail(f"Skipping related object {related_object_name}, kind {kind_name} because of CNV-71823")
219216
LOGGER.info(f"Looking for related object {related_object_name}, kind {kind_name}")
220217
for obj in hco_status_related_objects:
221218
if obj.name == related_object_name and obj.kind == kind_name:
@@ -243,8 +240,3 @@ def updated_resource(
243240
wait_for_reconcile_post_update=True,
244241
):
245242
yield cr
246-
247-
248-
@pytest.fixture(scope="session")
249-
def is_jira_71823_open():
250-
return is_jira_open(jira_id="CNV-71823")

0 commit comments

Comments
 (0)