Skip to content

Commit bf5301c

Browse files
authored
Merge pull request #10450 from priyawadhwa/load-image
skip LoadImage test on darwin/github actions
2 parents 7fdfcd1 + 5fc0b5e commit bf5301c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/integration/functional_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ func validateLoadImage(ctx context.Context, t *testing.T, profile string) {
164164
if NoneDriver() {
165165
t.Skip("load image not available on none driver")
166166
}
167+
if GithubActionRunner() && runtime.GOOS == "darwin" {
168+
t.Skip("skipping on github actions and darwin, as this test requires a running docker daemon")
169+
}
167170
defer PostMortemLogs(t, profile)
168171
// pull busybox
169172
busybox := "busybox:latest"

0 commit comments

Comments
 (0)