From ba14ad2916fedd4fcd2cc5bfed846e2d77dc457f Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Thu, 4 Jun 2020 16:11:47 -0700 Subject: [PATCH] skip tunnel test hyperv --- test/integration/fn_tunnel_cmd.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/fn_tunnel_cmd.go b/test/integration/fn_tunnel_cmd.go index 446d2544db..6b624d5e24 100644 --- a/test/integration/fn_tunnel_cmd.go +++ b/test/integration/fn_tunnel_cmd.go @@ -49,6 +49,9 @@ var ( ) func validateTunnelCmd(ctx context.Context, t *testing.T, profile string) { + if HyperVDriver() { + t.Skipf("skipping tunnel for hyperv driver") + } ctx, cancel := context.WithTimeout(ctx, Minutes(20)) type validateFunc func(context.Context, *testing.T, string) defer cancel()