From: Stephen Wong Date: Thu, 1 Nov 2018 06:49:50 +0000 (+0000) Subject: Merge "Add initial Istio validation testcase for CI" X-Git-Tag: opnfv-8.0.0~29 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=aedfdecd5647fc5c2de987e49a487053c78db8fc;p=clover.git Merge "Add initial Istio validation testcase for CI" --- aedfdecd5647fc5c2de987e49a487053c78db8fc diff --cc clover/functest/clover_k8s.py index eb546f2,b79ac90..25850c6 --- a/clover/functest/clover_k8s.py +++ b/clover/functest/clover_k8s.py @@@ -15,10 -16,12 +16,10 @@@ class K8sCloverTest(k8stest.K8sTesting) if "case_name" not in kwargs: kwargs.get("case_name", 'clover_k8s') super(K8sCloverTest, self).__init__(**kwargs) - self.check_envs() def run_kubetest(self): - success = True + success = istio_validate.validateDeploy() if success: self.result = 100 - elif failure: + else: self.result = 0 -