Skip to content

Commit 43c3f54

Browse files
authored
Merge pull request docker#11180 from ulyssessouza/skip-flaky-tests
skips flaky e2e tests on watch and attach
2 parents c1a9ffa + 493f6c8 commit 43c3f54

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pkg/e2e/compose_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ func TestDownComposefileInParentFolder(t *testing.T) {
141141
}
142142

143143
func TestAttachRestart(t *testing.T) {
144+
t.Skip("Skipping test until we can fix it")
145+
144146
if _, ok := os.LookupEnv("CI"); ok {
145147
t.Skip("Skipping test on CI... flaky")
146148
}

pkg/e2e/watch_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ import (
3535
)
3636

3737
func TestWatch(t *testing.T) {
38+
t.Skip("Skipping watch tests until we can figure out why they are flaky/failing")
39+
3840
services := []string{"alpine", "busybox", "debian"}
3941
t.Run("docker cp", func(t *testing.T) {
4042
for _, svcName := range services {

0 commit comments

Comments
 (0)