Skip to content

Commit

Permalink
Fix key error for provisioning template tests
Browse files Browse the repository at this point in the history
Signed-off-by: Shubham Ganar <[email protected]>
  • Loading branch information
shubhamsg199 committed Jan 16, 2025
1 parent 8efeaca commit 982e9e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pytest_fixtures/component/provisioning_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ def module_sync_kickstart_content(
rhel_ver = request.param['rhel_version']
if int(rhel_ver) <= 7:
repo_names.append(f'rhel{rhel_ver}')
# Using RHEL10 Beta repos until its GA
elif int(rhel_ver) == 10:
repo_names.append(f'rhel{rhel_ver}_bos_beta')
else:
repo_names.append(f'rhel{rhel_ver}_bos')
for name in repo_names:
Expand Down

0 comments on commit 982e9e2

Please sign in to comment.