Skip to content

Commit

Permalink
Fix RH Cloud connector test
Browse files Browse the repository at this point in the history
  • Loading branch information
jameerpathan111 authored and ogajduse committed Jan 29, 2024
1 parent 362c6e8 commit 5c9cb77
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/foreman/ui/test_rhc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from datetime import datetime, timedelta

from fauxfactory import gen_string
from manifester import Manifester
import pytest

from robottelo import constants
Expand Down Expand Up @@ -65,11 +66,16 @@ def fixture_setup_rhc_satellite(
request,
module_target_sat,
module_rhc_org,
module_extra_rhel_sca_manifest,
):
"""Create Organization and activation key after successful test execution"""
if settings.rh_cloud.crc_env == 'prod':
module_target_sat.upload_manifest(module_rhc_org.id, module_extra_rhel_sca_manifest.content)
manifester = Manifester(
allocation_name=module_rhc_org.name,
manifest_category=settings.manifest.extra_rhel_entitlement,
simple_content_access="enabled",
)
rhcloud_manifest = manifester.get_manifest()
module_target_sat.upload_manifest(module_rhc_org.id, rhcloud_manifest.content)
yield
if request.node.rep_call.passed:
# Enable and sync required repos
Expand Down

0 comments on commit 5c9cb77

Please sign in to comment.