Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
* remove resolve dependency test in the stream plan
  * the package we tried to install as a dependency issue causing pkg is
    breaking CentOS Stream altogether

Signed-off-by: Daniel Diblik <[email protected]>
  • Loading branch information
danmyway committed May 31, 2024
1 parent 651ef00 commit dac7790
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plans/stream.fmf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
summary+: |
CentOS Stream plans
description+: |
This needs to be changed.
Pls anyone remind me, if I forgot.
Separate plan for CentOS Stream.
The plan is separated, so we can keep better control of when it will be run.

enabled: false

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def hybrid_rocky_image(shell):
"""
grubenv_file = "/boot/grub2/grubenv"
is_efi = shell("efibootmgr", silent=True).returncode
if "rocky" in SystemInformationRelease.distribution and is_efi != 0:
if "rocky" in SystemInformationRelease.distribution and is_efi not in (None, 0):
if os.path.islink(grubenv_file):
target_grubenv_file = os.path.realpath(grubenv_file)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_install_dependency_packages(shell):
"python-requests", # OAMG-4936
]
if SystemInformationRelease.version.major == 8:
if "oracle-8" in SYSTEM_RELEASE_ENV:
if SystemInformationRelease.distribution == "oracle":
dependency_pkgs = [
"iwl7260-firmware", # RHELC-567
"iwlax2xx-firmware", # RHELC-567 - causing problems during the conversion on OL8
Expand Down

0 comments on commit dac7790

Please sign in to comment.