소스 검색

skips flaky e2e tests on watch and attach

Signed-off-by: Ulysses Souza <[email protected]>
Ulysses Souza 1 년 전
부모
커밋
493f6c8055
2개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      pkg/e2e/compose_test.go
  2. 2 0
      pkg/e2e/watch_test.go

+ 2 - 0
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")
 	}

+ 2 - 0
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 {