skip LoadImage test on darwin/github actions as it requires a running docker daemon
parent
3512e88020
commit
5fc0b5ecb8
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue