From e94d3b0ad78302fb040686447ac450cfcaf3b22a Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 4 Jun 2024 11:01:57 -0700 Subject: [PATCH] tests: Do not use fedora.repo for the test build The tmt systems have a fedora.repo present which is including packages that are not built for RHEL10 and can cause the test build to fail. Resolves: RHEL-40021 --- tests/scripts/run_tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index 0114ab4..747bf2c 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -7,7 +7,8 @@ if [ ! -e /usr/share/lorax/templates.d/80-rhel/ ]; then fi # Gather up the list of system repo files and use them for lorax -REPOS=$(for f in /etc/yum.repos.d/*repo; do echo -n "--repo $f "; done) +# Skip fedora.repo +REPOS=$(find /etc/yum.repos.d/ -maxdepth 1 -type f -name '*\.repo' ! -name 'fedora.repo' -exec echo -n "--repo {} " \;) if [ -z "$REPOS" ]; then echo "No system repos found" exit 1