From 5fc0b5ecb8c3fba4ce3047294b02956c854db0a8 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Thu, 11 Feb 2021 10:32:04 -0800 Subject: [PATCH] skip LoadImage test on darwin/github actions as it requires a running docker daemon --- test/integration/functional_test.go | 3 +++ 1 file changed, 3 insertions(+) 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"