From 493f6c80551282f0406d30177ffaa41f96acef98 Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Fri, 10 Nov 2023 18:31:25 +0100 Subject: [PATCH] skips flaky e2e tests on watch and attach Signed-off-by: Ulysses Souza --- pkg/e2e/compose_test.go | 2 ++ pkg/e2e/watch_test.go | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkg/e2e/compose_test.go b/pkg/e2e/compose_test.go index f52429da4..38300605c 100644 --- a/pkg/e2e/compose_test.go +++ b/pkg/e2e/compose_test.go @@ -141,6 +141,8 @@ func TestDownComposefileInParentFolder(t *testing.T) { } func TestAttachRestart(t *testing.T) { + t.Skip("Skipping test until we can fix it") + if _, ok := os.LookupEnv("CI"); ok { t.Skip("Skipping test on CI... flaky") } diff --git a/pkg/e2e/watch_test.go b/pkg/e2e/watch_test.go index 2e03c081d..0740e98c2 100644 --- a/pkg/e2e/watch_test.go +++ b/pkg/e2e/watch_test.go @@ -35,6 +35,8 @@ import ( ) func TestWatch(t *testing.T) { + t.Skip("Skipping watch tests until we can figure out why they are flaky/failing") + services := []string{"alpine", "busybox", "debian"} t.Run("docker cp", func(t *testing.T) { for _, svcName := range services {