Merge pull request #14233 from spowelljr/skipTestSkaffold
Skip TestSkaffold on Windowspull/13513/head^2
commit
89e43151bc
|
|
@ -35,6 +35,9 @@ import (
|
||||||
|
|
||||||
// TestSkaffold makes sure skaffold run can be run with minikube
|
// TestSkaffold makes sure skaffold run can be run with minikube
|
||||||
func TestSkaffold(t *testing.T) {
|
func TestSkaffold(t *testing.T) {
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
t.Skip("skipping due to https://github.com/kubernetes/minikube/issues/14232")
|
||||||
|
}
|
||||||
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")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue