Also skip skaffold test because it also requires docker-env

pull/10227/head
Priya Wadhwa 2021-01-22 15:05:06 -08:00
parent 62479fb16a
commit cc4d2d450e
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,9 @@ func TestSkaffold(t *testing.T) {
if NoneDriver() {
t.Skip("none driver doesn't support `minikube docker-env`; skaffold depends on this command")
}
if cr := ContainerRuntime(); cr != "docker" {
t.Skipf("skaffold requires docker-env, currently testing %s container runtime", cr)
}
profile := UniqueProfileName("skaffold")
ctx, cancel := context.WithTimeout(context.Background(), Minutes(5))