skip TestSkaffold on Hyper-V
parent
59bf38f286
commit
e57dff657b
|
@ -38,6 +38,9 @@ func TestSkaffold(t *testing.T) {
|
||||||
if NoneDriver() {
|
if NoneDriver() {
|
||||||
t.Skip("none driver doesn't support `minikube docker-env`; skaffold depends on this command")
|
t.Skip("none driver doesn't support `minikube docker-env`; skaffold depends on this command")
|
||||||
}
|
}
|
||||||
|
if HyperVDriver() {
|
||||||
|
t.Skip("skipping due to https://github.com/kubernetes/minikube/issues/14232")
|
||||||
|
}
|
||||||
if cr := ContainerRuntime(); cr != "docker" {
|
if cr := ContainerRuntime(); cr != "docker" {
|
||||||
t.Skipf("skaffold requires docker-env, currently testing %s container runtime", cr)
|
t.Skipf("skaffold requires docker-env, currently testing %s container runtime", cr)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue