skip LoadImage test on darwin/github actions as it requires a running docker daemon

pull/10450/head
Priya Wadhwa 2021-02-11 10:32:04 -08:00
parent 3512e88020
commit 5fc0b5ecb8
1 changed files with 3 additions and 0 deletions

View File

@ -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"