diff --git a/test/integration/fn_tunnel_cmd.go b/test/integration/fn_tunnel_cmd.go index 1efe109b0c..5f03030863 100644 --- a/test/integration/fn_tunnel_cmd.go +++ b/test/integration/fn_tunnel_cmd.go @@ -128,6 +128,9 @@ func validateTunnelStart(ctx context.Context, t *testing.T, profile string) { // validateServiceStable starts nginx pod, nginx service and waits nginx having loadbalancer ingress IP func validateServiceStable(ctx context.Context, t *testing.T, profile string) { checkRoutePassword(t) + if runtime.GOOS == "windows" { + t.Skipf("skipping for now") + } client, err := kapi.Client(profile) if err != nil { @@ -172,6 +175,11 @@ func validateServiceStable(ctx context.Context, t *testing.T, profile string) { // validateAccessDirect validates if the test service can be accessed with LoadBalancer IP from host func validateAccessDirect(ctx context.Context, t *testing.T, profile string) { + checkRoutePassword(t) + if runtime.GOOS == "windows" { + t.Skipf("skipping for now") + } + checkRoutePassword(t) got := []byte{} diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index 01ce1858fa..0430d78803 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -339,7 +339,9 @@ func validateComponentHealth(ctx context.Context, t *testing.T, profile string) func validateStatusCmd(ctx context.Context, t *testing.T, profile string) { defer PostMortemLogs(t, profile) - + if runtime.GOOS == "windows" { + t.Skipf("skipping windows") + } rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "status")) if err != nil { t.Errorf("failed to run minikube status. args %q : %v", rr.Command(), err) @@ -453,6 +455,9 @@ func validateDNS(ctx context.Context, t *testing.T, profile string) { // validateDryRun asserts that the dry-run mode quickly exits with the right code func validateDryRun(ctx context.Context, t *testing.T, profile string) { + if runtime.GOOS == "windows" { + t.Skip("skipping windows for now") + } // dry-run mode should always be able to finish quickly (<5s) mctx, cancel := context.WithTimeout(ctx, Seconds(5)) defer cancel()