-
Notifications
You must be signed in to change notification settings - Fork 115
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
Update target os name due to RHELC-1737 #17208
base: master
Are you sure you want to change the base?
Conversation
1bf68ea
to
e24e014
Compare
trigger: test-robottelo |
PRT Result
|
trigger: test-robottelo |
PRT Result
|
e24e014
to
8afb779
Compare
trigger: test-robottelo |
PRT Result
|
PRT Result
|
8afb779
to
5f9b8a8
Compare
trigger: test-robottelo |
PRT Result
|
@@ -328,6 +328,8 @@ def test_convert2rhel_oracle_with_pre_conversion_template_check( | |||
assert host_content['facts']['conversions::success'] == 'true' | |||
convert2rhel_facts = json.loads(oracle.execute('cat /etc/rhsm/facts/convert2rhel.facts').stdout) | |||
assert convert2rhel_facts['conversions.env.CONVERT2RHEL_THROUGH_FOREMAN'] == '1' | |||
# https://issues.redhat.com/browse/RHELC-1737 | |||
target_os_name = 'Oracle' if is_open('RHELC-1737') else 'Red Hat' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oracle tests are failing currently in PRT, but I think this would return as Oracle Linux
, could you check and confirm?
And, OEL7 and CentOS7 conversion failures are due to known regression in analyze template
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oracle 8 is failing because of template issue. The assertion will pass once I fix the template for oracle 8 which is currently I am working on.
Problem Statement
Bug#RHELC-1737: Incorrect target os name post conversion to RHEL
Solution
Updated assertion
Related Issues