skip for all of Windows

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

View File

@ -35,12 +35,12 @@ import (
// TestSkaffold makes sure skaffold run can be run with minikube
func TestSkaffold(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping due to https://github.com/kubernetes/minikube/issues/14232")
}
if NoneDriver() {
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" {
t.Skipf("skaffold requires docker-env, currently testing %s container runtime", cr)
}