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 654c8e5..b79ac90 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"""
@@ -18,9 +19,9 @@ class K8sCloverTest(k8stest.K8sTesting):
self.check_envs()
def run_kubetest(self):
- success = True
+ success = istio_validate.validateDeploy()
if success:
self.result = 100
- elif failure:
+ else:
self.result = 0