diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-07-12 15:12:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-12 15:12:22 +0000 |
commit | 0323218afb7500bac979e46aafc9c33d614c99d5 (patch) | |
tree | 48cecb3992b98dabcc30e1a27c97dd8de69a9082 /functest/cli/commands/cli_os.py | |
parent | f81e3d2cf3cf9b54f940a6e0ae0ea68db0e1f589 (diff) | |
parent | 3bb72f47f704f25d957d8f00b82360fe8b6b2f7a (diff) |
Merge "Switch to check_deployment instead of check_os.sh"
Diffstat (limited to 'functest/cli/commands/cli_os.py')
-rw-r--r-- | functest/cli/commands/cli_os.py | 5 |
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() |