|
21 | 21 | get_resource_by_name, |
22 | 22 | get_resource_from_module_name, |
23 | 23 | ) |
24 | | -from utilities.constants import HCO_BEARER_AUTH, HPP_POOL |
| 24 | +from utilities.constants import HPP_POOL |
25 | 25 | from utilities.hco import ResourceEditorValidateHCOReconcile, get_hco_version |
26 | 26 | from utilities.infra import ( |
27 | 27 | get_daemonset_by_name, |
28 | 28 | get_deployment_by_name, |
29 | 29 | get_pod_by_name_prefix, |
30 | 30 | ) |
31 | | -from utilities.jira import is_jira_open |
32 | 31 | from utilities.operator import ( |
33 | 32 | disable_default_sources_in_operatorhub, |
34 | 33 | get_machine_config_pools_conditions, |
@@ -214,8 +213,6 @@ def related_object_from_hco_status( |
214 | 213 | kind_name = list(cnv_related_object_matrix__function__.values())[0] |
215 | 214 | related_object_name = list(cnv_related_object_matrix__function__.keys())[0] |
216 | 215 |
|
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") |
219 | 216 | LOGGER.info(f"Looking for related object {related_object_name}, kind {kind_name}") |
220 | 217 | for obj in hco_status_related_objects: |
221 | 218 | if obj.name == related_object_name and obj.kind == kind_name: |
@@ -243,8 +240,3 @@ def updated_resource( |
243 | 240 | wait_for_reconcile_post_update=True, |
244 | 241 | ): |
245 | 242 | 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