aboutsummaryrefslogtreecommitdiffstats
path: root/functest/cli
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-07-12 15:12:22 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-12 15:12:22 +0000
commit0323218afb7500bac979e46aafc9c33d614c99d5 (patch)
tree48cecb3992b98dabcc30e1a27c97dd8de69a9082 /functest/cli
parentf81e3d2cf3cf9b54f940a6e0ae0ea68db0e1f589 (diff)
parent3bb72f47f704f25d957d8f00b82360fe8b6b2f7a (diff)
Merge "Switch to check_deployment instead of check_os.sh"
Diffstat (limited to 'functest/cli')
-rw-r--r--functest/cli/commands/cli_os.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/functest/cli/commands/cli_os.py b/functest/cli/commands/cli_os.py
index 44181d4f..f4ec1661 100644
--- a/functest/cli/commands/cli_os.py
+++ b/functest/cli/commands/cli_os.py
@@ -12,8 +12,8 @@ import os
import click
+from functest.ci import check_deployment
from functest.utils.constants import CONST
-import functest.utils.functest_utils as ft_utils
import functest.utils.openstack_clean as os_clean
import functest.utils.openstack_snapshot as os_snapshot
@@ -49,7 +49,8 @@ class CliOpenStack(object):
def check(self):
self.ping_endpoint()
- ft_utils.execute_command("check_os.sh", verbose=False)
+ deployment = check_deployment.CheckDeployment()
+ deployment.check_all()
def snapshot_create(self):
self.ping_endpoint()