Merge pull request #11180 from ulyssessouza/skip-flaky-tests

skips flaky e2e tests on watch and attach
This commit is contained in:
Guillaume Lours 2023-11-10 19:51:00 +01:00 committed by GitHub
commit 43c3f54598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -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")
}

View File

@ -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 {