skip TestSkaffold on Hyper-V

pull/14233/head
Steven Powell 2022-05-26 16:07:40 -07:00
parent 59bf38f286
commit e57dff657b
1 changed files with 3 additions and 0 deletions

View File

@ -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)
} }