From da8208fd03c6d04ef15f11870eb22cb460ad1fc4 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 6 Feb 2025 11:42:37 -0800 Subject: [PATCH] ostree_build: give tool install a bit longer It's timing out a lot ATM with openQA being heavily loaded... Signed-off-by: Adam Williamson --- tests/_ostree_build.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_ostree_build.pm b/tests/_ostree_build.pm index 8400dfb0..f518de87 100644 --- a/tests/_ostree_build.pm +++ b/tests/_ostree_build.pm @@ -33,7 +33,7 @@ sub run { # usually a good idea for this kinda thing assert_script_run "setenforce Permissive"; # install the tools we need - assert_script_run "dnf -y install git lorax flatpak ostree rpm-ostree dbus-daemon moreutils", 300; + assert_script_run "dnf -y install git lorax flatpak ostree rpm-ostree dbus-daemon moreutils", 480; # now check out workstation-ostree-config assert_script_run 'git clone https://pagure.io/workstation-ostree-config.git'; assert_script_run 'pushd workstation-ostree-config';