desktop_update_graphical: disable koji-rawhide on update tests

...or else we get stuff like
https://openqa.fedoraproject.org/tests/1649309#step/desktop_update_graphical/40

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2022-12-16 23:22:20 -08:00
parent 6daf9c36a0
commit 2c1a0e8128
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,12 @@ sub run {
# use a tty console for repo config and package prep
$self->root_console(tty => 3);
assert_script_run 'dnf config-manager --set-disabled updates-testing';
# for update tests, disable koji-rawhide at this point, otherwise
# gnome-software will complain about things being unsigned even
# though the repo has gpgcheck=0
if (get_var("ADVISORY_OR_TASK") && get_var("VERSION") eq get_var("RAWREL")) {
assert_script_run 'dnf config-manager --set-disabled koji-rawhide';
}
prepare_test_packages;
# get back to the desktop
desktop_vt;