Skip to content

Commit

Permalink
Merge pull request #21063 from grisu48/skip_yast2_lan
Browse files Browse the repository at this point in the history
Skip yast2_lan on SLES16
  • Loading branch information
grisu48 authored Jan 28, 2025
2 parents ae8fa99 + 5887127 commit 2462946
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/main_common.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ sub load_consoletests {
}
loadtest 'console/systemd_wo_udev' if (is_sle('15-sp4+') || is_leap('15.4+') || is_tumbleweed);
loadtest "console/ncurses" if is_leap;
loadtest "console/yast2_lan" unless is_bridged_networking;
loadtest "console/yast2_lan" unless ((is_sle("16+") || is_leap("16+")) || is_bridged_networking);
# no local certificate store
if (!is_krypton_argon) {
loadtest "console/curl_https";
Expand All @@ -1264,8 +1264,8 @@ sub load_consoletests {
loadtest "console/zypper_in";
loadtest "console/zypper_log";
if (!get_var("LIVETEST")) {
loadtest "console/yast2_i";
loadtest "console/yast2_bootloader" unless is_bootloader_sdboot;
loadtest "console/yast2_i" unless (is_sle("16+") || is_leap("16+"));
loadtest "console/yast2_bootloader" unless ((is_sle("16+") || is_leap("16+")) || is_bootloader_sdboot);
}
loadtest "console/vim" if is_opensuse || is_sle('<15') || !get_var('PATTERNS') || check_var_array('PATTERNS', 'enhanced_base');
# textmode install comes without firewall by default atm on openSUSE. For virtualization server xen and kvm is disabled by default: https://fate.suse.com/324207
Expand Down

0 comments on commit 2462946

Please sign in to comment.