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

Fixes for unblocking RHEL-10 container builds #5889

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def test_get_default_file_system(self):
def test_get_supported_raid_levels(self):
"""Test GetSupportedRaidLevels."""
assert self.interface.GetSupportedRaidLevels(DEVICE_TYPE_MD) == \
['linear', 'raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this intended to be there ? I find it strange this is part of an infra PR ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well it's not an infra PR.
It's a PR with some fixes that are needed to re-enable building centos10 and centos9 containers

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even the 'infra' marked commit - has tests changes.

['raid0', 'raid1', 'raid10', 'raid4', 'raid5', 'raid6']

@patch('pyanaconda.modules.storage.partitioning.interactive.utils.get_format')
@patch('pyanaconda.modules.storage.partitioning.interactive.utils.platform', new_callable=EFI)
Expand Down
Loading