Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rhsc9 repo to constants to fix tests using sat.REPOS #17274

Merged
merged 2 commits into from
Jan 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 21 additions & 11 deletions robottelo/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,9 @@
'rhva6': ('Red Hat Enterprise Virtualization Agents for RHEL 6 Server (RPMs)'),
'rhs7': 'Red Hat Satellite 6.11 (for RHEL 7 Server) (RPMs)',
'rhs8': 'Red Hat Satellite 6.13 for RHEL 8 x86_64 (RPMs)',
'rhsc7': 'Red Hat Satellite Capsule 6.11 (for RHEL 7 Server) (RPMs)',
'rhsc8': 'Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 (RPMs)',
'rhsc7': 'Red Hat Satellite Capsule 6.16 (for RHEL 7 Server) (RPMs)',
'rhsc8': 'Red Hat Satellite Capsule 6.16 for RHEL 8 x86_64 (RPMs)',
'rhsc9': 'Red Hat Satellite Capsule 6.16 for RHEL 9 x86_64 (RPMs)',
'rhsc7_iso': 'Red Hat Satellite Capsule 6.4 (for RHEL 7 Server) (ISOs)',
'rhsclient7': 'Red Hat Satellite Client 6 (for RHEL 7 Server) (RPMs)',
'rhsclient8': 'Red Hat Satellite Client 6 for RHEL 8 x86_64 (RPMs)',
Expand Down Expand Up @@ -394,22 +395,31 @@
'distro': 'rhel7',
'key': 'rhs',
},
'rhsc7': {
'id': 'rhel-7-server-satellite-capsule-6.16-rpms',
'name': ('Red Hat Satellite Capsule 6.16 for RHEL 7 Server RPMs x86_64'),
'version': '6.16',
'reposet': REPOSET['rhsc7'],
'product': PRDS['rhsc'],
'distro': 'rhel7',
'key': 'rhsc',
},
'rhsc8': {
'id': 'satellite-capsule-6.13-for-rhel-8-x86_64-rpms',
'name': ('Red Hat Satellite Capsule 6.13 for RHEL 8 x86_64 RPMs'),
'version': '6.13',
'id': 'satellite-capsule-6.16-for-rhel-8-x86_64-rpms',
'name': ('Red Hat Satellite Capsule 6.16 for RHEL 8 x86_64 RPMs'),
'version': '6.16',
'reposet': REPOSET['rhsc8'],
'product': PRDS['rhsc'],
'distro': 'rhel8',
'key': 'rhsc',
},
'rhsc7': {
'id': 'rhel-7-server-satellite-capsule-6.11-rpms',
'name': ('Red Hat Satellite Capsule 6.11 for RHEL 7 Server RPMs x86_64'),
'version': '6.11',
'reposet': REPOSET['rhsc7'],
'rhsc9': {
'id': 'satellite-capsule-6.16-for-rhel-9-x86_64-rpms',
'name': ('Red Hat Satellite Capsule 6.16 for RHEL 9 x86_64 RPMs'),
'version': '6.16',
'reposet': REPOSET['rhsc9'],
'product': PRDS['rhsc'],
'distro': 'rhel7',
'distro': 'rhel9',
'key': 'rhsc',
},
'rhsc7_iso': {
Expand Down
Loading