mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-22 05:53:09 +00:00
Effectively skip anaconda_help on F39+ Workstation live for now
There isn't any Help in the webUI installer, really. In future it's meant to have more 'contextual' help - little question mark icons next to elements of the UI that explain them when clicked on - which we could implement tests for, but this isn't done yet. Let's not skip scheduling the test entirely, because we can still run it on F38 respins, and we may be able to implement testing of the contextual help in future. So let's just soft fail and return immediately. If we get to F39 stable without the contextual help being implemented (or it turns out not to be testable within the confines of this design), we can skip scheduling the test on webUI images entirely. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
df1c9037d6
commit
539f8a54fc
@ -30,6 +30,15 @@ sub run {
|
|||||||
}
|
}
|
||||||
# For LIVE Workstation
|
# For LIVE Workstation
|
||||||
elsif ((get_var('LIVE')) && (get_var('DESKTOP') eq "gnome")) {
|
elsif ((get_var('LIVE')) && (get_var('DESKTOP') eq "gnome")) {
|
||||||
|
my $relnum = get_release_number;
|
||||||
|
# the webUI installer from F39+ does not really have Help in
|
||||||
|
# a traditional sense, it's planned to have contextual help
|
||||||
|
# in future which we may be able to test, but for now just
|
||||||
|
# skip it
|
||||||
|
if ($relnum > 38) {
|
||||||
|
register_soft_failure "no Help in anaconda webUI currently!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
@testplan = qw/keyboard_layout install_destination time_date/;
|
@testplan = qw/keyboard_layout install_destination time_date/;
|
||||||
}
|
}
|
||||||
# For Silverblue
|
# For Silverblue
|
||||||
|
Loading…
Reference in New Issue
Block a user