Skip to content

Commit

Permalink
Merge pull request #331 from SUSE/open_vm_tools_repoclosure
Browse files Browse the repository at this point in the history
Test open-vm-tools only on aarch64 and x86_64
  • Loading branch information
dirkmueller authored Oct 23, 2023
2 parents 611ebae + 1bf12ac commit 4a02d0a
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions tests/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,29 @@
#: This is caused by these packages having boolean requires on the kernel, which
#: is not present in the SLE_BCI repository. We check that these packages can be
#: installed in :py:func:`test_package_installation`.
REPOCLOSURE_FALSE_POSITIVES = [
"multipath-tools",
"open-vm-tools",
"patterns-base-fips",
"patterns-base-minimal_base",
"podman",
"salt-minion",
"suse-module-tools",
"typelib-1_0-Gtk-3_0",
] + (
REPOCLOSURE_FALSE_POSITIVES = (
[
"qml-autoreqprov",
"typelib-1_0-Gtk-4_0",
"multipath-tools",
"patterns-base-fips",
"patterns-base-minimal_base",
"podman",
"salt-minion",
"suse-module-tools",
"typelib-1_0-Gtk-3_0",
]
if OS_SP_VERSION >= 4
else []
+ (
[
"qml-autoreqprov",
"typelib-1_0-Gtk-4_0",
]
if OS_SP_VERSION >= 4
else []
)
+ (
["open-vm-tools"]
if LOCALHOST.system_info.arch in ("aarch64", "x86_64")
else []
)
)

#: Packages that have broken dependencies by intention and should be excluded
Expand Down

0 comments on commit 4a02d0a

Please sign in to comment.