From c99b91989455c7173d480673f99589edeb2cecf3 Mon Sep 17 00:00:00 2001 From: "Hantao (Will) Wang" Date: Thu, 27 Jun 2019 15:41:34 -0700 Subject: [PATCH] bring back the handle call --- test/k8s-integration/main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/k8s-integration/main.go b/test/k8s-integration/main.go index ad00118c9..03f2dc4f1 100644 --- a/test/k8s-integration/main.go +++ b/test/k8s-integration/main.go @@ -111,6 +111,11 @@ func main() { ensureVariable(kubeVersion, false, "Cannot set a kube version when using a local k8s dir.") ensureVariable(testVersion, false, "Cannot set a test version when using a local k8s dir.") } + + err := handle() + if err != nil { + klog.Fatalf("Failed to run integration test: %v", err) + } } func handle() error {