Merge pull request #10450 from priyawadhwa/load-image

skip LoadImage test on darwin/github actions
pull/10457/head
Medya Ghazizadeh 2021-02-11 15:03:06 -08:00 committed by GitHub
commit bf5301cbb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"