From 42befba0b1891abfb1b088057cccdb7487e5057a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 15 Feb 2024 15:23:49 +0100 Subject: [PATCH] dnf: Explicitly load filelists MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2264414 Signed-off-by: Lubomír Sedlář --- tests/test_gather.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_gather.py b/tests/test_gather.py index 3062c470..1ae95797 100644 --- a/tests/test_gather.py +++ b/tests/test_gather.py @@ -2286,6 +2286,7 @@ class DNFDepsolvingTestCase(DepsolvingBase, unittest.TestCase): conf = Conf(base_arch) conf.persistdir = persistdir conf.cachedir = self.cachedir + conf.optional_metadata_types = ["filelists"] if exclude: conf.exclude = exclude dnf = DnfWrapper(conf)