Skip to content

Commit d48f28c

Browse files
committed
test: skip watch e2e test on macOS for the moment
Fix forthcoming via compose-spec/compose-go#436 which addresses some symlink limitations. These can actually effect other platforms but are most common on macOS because the test creates temporary directories, which are symlinked on macOS. Signed-off-by: Milas Bowman <[email protected]>
1 parent 0938c7e commit d48f28c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/e2e/watch_test.go

Lines changed: 5 additions & 0 deletions
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) {

0 commit comments

Comments
 (0)