Skip to content

Commit

Permalink
Merge pull request #333 from SUSE/open_vm_tools_try_2
Browse files Browse the repository at this point in the history
Test open-vm-tools on aarch64 only for SP5 and above
  • Loading branch information
dirkmueller authored Oct 24, 2023
2 parents 4a02d0a + 0eccf85 commit 847b1bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@
)
+ (
["open-vm-tools"]
if LOCALHOST.system_info.arch in ("aarch64", "x86_64")
if OS_SP_VERSION >= 5
and LOCALHOST.system_info.arch in ("aarch64", "x86_64")
else []
)
+ (
["open-vm-tools"]
if OS_SP_VERSION in (3, 4) and LOCALHOST.system_info.arch in ("x86_64")
else []
)
)
Expand Down

0 comments on commit 847b1bd

Please sign in to comment.