Skip to content

Commit

Permalink
Merge pull request #437 from SUSE/thermald-x86_64
Browse files Browse the repository at this point in the history
thermald is only a x86_64 only package -> adjust false positive list for repoclosure
  • Loading branch information
dirkmueller authored Apr 4, 2024
2 parents b32111e + 67fcb7d commit 517671e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,17 @@
"jeos-firstboot",
# has a boolean dependency on the kernel
"ecryptfs-utils",
# has a boolean dependency on the kernel
"thermald",
# has a boolean dependency on xwayland
"at-spi2-core",
]
if OS_SP_VERSION >= 6
else []
)
+ ( # has a boolean dependency on the kernel && only in x86_64
["thermald"]
if (OS_SP_VERSION >= 6 and LOCALHOST.system_info.arch == "x86_64")
else []
)
+ (
["open-vm-tools"]
if OS_SP_VERSION >= 5
Expand Down

0 comments on commit 517671e

Please sign in to comment.