summaryrefslogtreecommitdiffstats
path: root/clover/functest/clover_k8s.py
diff options
context:
space:
mode:
Diffstat (limited to 'clover/functest/clover_k8s.py')
-rw-r--r--clover/functest/clover_k8s.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/clover/functest/clover_k8s.py b/clover/functest/clover_k8s.py
index eb546f2..25850c6 100644
--- a/clover/functest/clover_k8s.py
+++ b/clover/functest/clover_k8s.py
@@ -7,6 +7,7 @@
import functest_kubernetes.k8stest as k8stest
+import clover.servicemesh.validate as istio_validate
class K8sCloverTest(k8stest.K8sTesting):
"""Clover test suite"""
@@ -17,8 +18,8 @@ class K8sCloverTest(k8stest.K8sTesting):
super(K8sCloverTest, self).__init__(**kwargs)
def run_kubetest(self):
- success = True
+ success = istio_validate.validateDeploy()
if success:
self.result = 100
- elif failure:
+ else:
self.result = 0