Skip to content

Commit

Permalink
Merge pull request #11180 from ulyssessouza/skip-flaky-tests
Browse files Browse the repository at this point in the history
skips flaky e2e tests on watch and attach
  • Loading branch information
glours authored Nov 10, 2023
2 parents c1a9ffa + 493f6c8 commit 43c3f54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/e2e/compose_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
2 changes: 2 additions & 0 deletions pkg/e2e/watch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 43c3f54

Please sign in to comment.