From 06f20889ca532b1f4d9c121110ea3e4e1ceff655 Mon Sep 17 00:00:00 2001 From: Sushanta Das Date: Tue, 5 Nov 2024 13:26:21 +0530 Subject: [PATCH] chore: skip multicomponent test with same git url (#1445) skip multicomponent test with same git url --- tests/build/build.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/build/build.go b/tests/build/build.go index 85325c2c0..d28af2b5d 100644 --- a/tests/build/build.go +++ b/tests/build/build.go @@ -938,7 +938,8 @@ var _ = framework.BuildSuiteDescribe("Build service E2E tests", Label("build-ser }, time.Minute*5, constants.PipelineRunPollingInterval).Should(Succeed(), "timeout while waiting for PR pipeline to start") }) }) - When("a components is created with same git url in different namespace", func() { + // Skipping this scenario due to the issue: https://issues.redhat.com/browse/KFLUXBUGS-1820 , reenable this test once issue is fixed + When("a components is created with same git url in different namespace", Pending, func() { var namespace, appName, compName string var fw *framework.Framework