Merge pull request #14233 from spowelljr/skipTestSkaffold

Skip TestSkaffold on Windows
pull/13513/head^2
Sharif Elgamal 2022-05-27 13:57:09 -07:00 committed by GitHub
commit 89e43151bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,9 @@ 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")
}