Skip to content

Commit 150b88a

Browse files
authored
Merge pull request docker#10829 from milas/e2e-watch-test-fix
test: watch e2e reliability tweaks
2 parents 5159058 + ddceb1a commit 150b88a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pkg/e2e/watch_test.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import (
2020
"fmt"
2121
"os"
2222
"path/filepath"
23+
"runtime"
2324
"strings"
2425
"sync/atomic"
2526
"testing"
@@ -33,6 +34,10 @@ import (
3334
)
3435

3536
func TestWatch(t *testing.T) {
37+
if runtime.GOOS == "darwin" {
38+
t.Skip("Test currently broken on macOS due to symlink issues (see compose-go#436)")
39+
}
40+
3641
services := []string{"alpine", "busybox", "debian"}
3742
for _, svcName := range services {
3843
t.Run(svcName, func(t *testing.T) {
@@ -63,7 +68,7 @@ func doTest(t *testing.T, svcName string) {
6368
"COMPOSE_PROJECT_NAME=" + projName,
6469
}
6570

66-
cli := NewParallelCLI(t, WithEnv(env...))
71+
cli := NewCLI(t, WithEnv(env...))
6772

6873
cleanup := func() {
6974
cli.RunDockerComposeCmd(t, "down", svcName, "--timeout=0", "--remove-orphans", "--volumes")

0 commit comments

Comments
 (0)