From f5868e992c74d8b6563abbd2513eb6307423eee1 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Mon, 11 Nov 2024 16:03:49 -0800 Subject: [PATCH] tests: Skip a known bad test osbuild-composer v124 has a bug (see https://github.com/osbuild/images/pull/1034) that causes the TestStartOSTreeParentNoURL to fail. Skip it until it has been fixed. Related: RHEL-67056 --- 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 9003bca..d553cf2 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -67,6 +67,7 @@ backend_start composer-cli status show || fail "Getting osbuild-composer status" -/usr/libexec/tests/composer-cli/composer-cli-tests -test.v || fail "Running integration tests" +# NOTE: Skipping TestStartOSTreeParentNoURL until https://github.com/osbuild/images/pull/1034 is resolved +/usr/libexec/tests/composer-cli/composer-cli-tests -test.v -test.skip TestStartOSTreeParentNoURL || fail "Running integration tests" exit $FAILANY