skipping more tests for now

pull/8265/head
Medya Gh 2020-05-25 21:47:54 -07:00
parent e9e53745de
commit fad43627ad
No known key found for this signature in database
GPG Key ID: 7CF7792C6DF3245C
1 changed files with 8 additions and 0 deletions

View File

@ -514,6 +514,10 @@ func validateCacheCmd(ctx context.Context, t *testing.T, profile string) {
})
t.Run("verify_cache_inside_node", func(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skipf("skipping: skipping for now")
}
var rr *RunResult
var err error
if runtime.GOOS == "windows" {
@ -532,6 +536,10 @@ func validateCacheCmd(ctx context.Context, t *testing.T, profile string) {
})
t.Run("cache_reload", func(t *testing.T) { // deleting image inside minikube node manually and expecting reload to bring it back
if runtime.GOOS == "windows" {
t.Skipf("skipping: skipping for now")
}
img := "busybox:latest"
// deleting image inside minikube node manually
var rr *RunResult