From 35b206ee1e4540ffc6658fb9f5834f20281a9314 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Mon, 30 Oct 2023 11:47:00 +0100 Subject: [PATCH] test: don't install weak dependencies for updatest-testing scenario In Fedora-39 the dnf weak dependencies behaviour changed to install them by default which leads to podman's tests having packagekit/networkmanager and storaged installed. This is unwanted so explicitly disable it. --- test/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run b/test/run index 9db8932851c1..f601b980c6bf 100755 --- a/test/run +++ b/test/run @@ -41,7 +41,7 @@ case "${TEST_SCENARIO:=}" in PREPARE_OPTS="$PREPARE_OPTS --overlay" ;;& *updates-testing*) - bots/image-customize --fresh -v --run-command 'dnf -y update --enablerepo=updates-testing >&2' "$TEST_OS" + bots/image-customize --fresh -v --run-command 'dnf -y update --enablerepo=updates-testing --setopt=install_weak_deps=False >&2' "$TEST_OS" RUN_OPTS="$RUN_OPTS " PREPARE_OPTS="$PREPARE_OPTS --overlay" ;;&