diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 793e3bf92e..c63c6f94a8 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -164,6 +164,9 @@ func validateLoadImage(ctx context.Context, t *testing.T, profile string) { if NoneDriver() { t.Skip("load image not available on none driver") } + if GithubActionRunner() && runtime.GOOS == "darwin" { + t.Skip("skipping on github actions and darwin, as this test requires a running docker daemon") + } defer PostMortemLogs(t, profile) // pull busybox busybox := "busybox:latest"