From eb78e043255d181e2ecc33fb2c3143e04fee2a50 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 6 Nov 2024 12:29:30 -0800 Subject: [PATCH] mediakit_fileconflicts: we need to install python3-dnf now Signed-off-by: Adam Williamson --- tests/mediakit_fileconflicts.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/mediakit_fileconflicts.pm b/tests/mediakit_fileconflicts.pm index 8dfe7a99..4a2277c3 100644 --- a/tests/mediakit_fileconflicts.pm +++ b/tests/mediakit_fileconflicts.pm @@ -10,6 +10,8 @@ sub run { assert_script_run "mount /dev/cdrom /mnt/iso"; # download the check script assert_script_run "curl --retry-delay 10 --max-time 30 --retry 5 -o /usr/local/bin/potential_conflict.py https://pagure.io/fedora-qa/qa-misc/raw/master/f/potential_conflict.py", timeout => 180; + # install the dependency + assert_script_run "dnf -y install python3-dnf", timeout => 180; # run the check assert_script_run "python3 /usr/local/bin/potential_conflict.py --repofrompath=media,/mnt/iso -r media"; }