Signed-off-by: Laura Brehm <[email protected]>
@@ -135,6 +135,9 @@ func TestDownComposefileInParentFolder(t *testing.T) {
}
func TestAttachRestart(t *testing.T) {
+ if _, ok := os.LookupEnv("CI"); ok {
+ t.Skip("Skipping test on CI... flaky")
+ }
c := NewParallelCLI(t)
cmd := c.NewDockerComposeCmd(t, "--ansi=never", "--project-directory", "./fixtures/attach-restart", "up")
@@ -21,6 +21,7 @@ import (
"fmt"
"net"
"net/http"
+ "os"
"testing"
"time"
@@ -29,6 +30,9 @@ import (
)
func TestPause(t *testing.T) {
cli := NewParallelCLI(t, WithEnv(
"COMPOSE_PROJECT_NAME=e2e-pause",
"COMPOSE_FILE=./fixtures/pause/compose.yaml"))