mirror of https://github.com/docker/compose.git
Skip some tests in CI due to flakiness
Signed-off-by: Laura Brehm <laurabrehm@hey.com>
This commit is contained in:
parent
118b4f07e5
commit
a1984ca1de
|
@ -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) {
|
||||
if _, ok := os.LookupEnv("CI"); ok {
|
||||
t.Skip("Skipping test on CI... flaky")
|
||||
}
|
||||
cli := NewParallelCLI(t, WithEnv(
|
||||
"COMPOSE_PROJECT_NAME=e2e-pause",
|
||||
"COMPOSE_FILE=./fixtures/pause/compose.yaml"))
|
||||
|
|
Loading…
Reference in New Issue