From 8b817ab4bac398e2e935e838446700ca42a713b5 Mon Sep 17 00:00:00 2001 From: Michael Plump Date: Thu, 25 May 2023 14:06:24 -0400 Subject: [PATCH] test: disable failing buildpacks tests (#8812) (#8818) (cherry picked from commit 75c44950b0b646ffdcbf9fdbb91e5b79a9921166) Co-authored-by: Renzo Rojas --- integration/debug_test.go | 15 ++++++------- integration/run_test.go | 44 +++++++++++++++++++++------------------ 2 files changed, 32 insertions(+), 27 deletions(-) diff --git a/integration/debug_test.go b/integration/debug_test.go index 18827659098..d1df4c43651 100644 --- a/integration/debug_test.go +++ b/integration/debug_test.go @@ -56,13 +56,14 @@ func TestDebug(t *testing.T) { deployments: []string{"java"}, pods: []string{"nodejs", "npm" /*, "python3"*/, "go" /*, "netcore"*/}, }, - { - description: "buildpacks", - dir: "testdata/debug", - args: []string{"--profile", "buildpacks"}, - deployments: []string{"java"}, - pods: []string{"nodejs", "npm" /*, "python3"*/, "go" /*, "netcore"*/}, - }, + // TODO(#8811): Enable this test when issue is solve. + // { + // description: "buildpacks", + // dir: "testdata/debug", + // args: []string{"--profile", "buildpacks"}, + // deployments: []string{"java"}, + // pods: []string{"nodejs", "npm" /*, "python3"*/, "go" /*, "netcore"*/}, + // }, { description: "helm", dir: "examples/helm-deployment", diff --git a/integration/run_test.go b/integration/run_test.go index 854aa411450..bb7c08a61af 100644 --- a/integration/run_test.go +++ b/integration/run_test.go @@ -121,26 +121,30 @@ var tests = []struct { dir: "examples/custom", pods: []string{"getting-started-custom"}, }, - { - description: "buildpacks Go", - dir: "examples/buildpacks", - deployments: []string{"web"}, - }, - { - description: "buildpacks NodeJS", - dir: "examples/buildpacks-node", - deployments: []string{"web"}, - }, - { - description: "buildpacks Python", - dir: "examples/buildpacks-python", - deployments: []string{"web"}, - }, - { - description: "buildpacks Java", - dir: "examples/buildpacks-java", - deployments: []string{"web"}, - }, + // TODO(#8811): Enable this test when issue is solve. + // { + // description: "buildpacks Go", + // dir: "examples/buildpacks", + // deployments: []string{"web"}, + // }, + // TODO(#8811): Enable this test when issue is solve. + // { + // description: "buildpacks NodeJS", + // dir: "examples/buildpacks-node", + // deployments: []string{"web"}, + // }, + // TODO(#8811): Enable this test when issue is solve. + // { + // description: "buildpacks Python", + // dir: "examples/buildpacks-python", + // deployments: []string{"web"}, + // }, + // TODO(#8811): Enable this test when issue is solve. + // { + // description: "buildpacks Java", + // dir: "examples/buildpacks-java", + // deployments: []string{"web"}, + // }, { description: "kustomize", dir: "examples/getting-started-kustomize",