diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-09-07 22:13:42 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-09-08 10:45:45 +0800 |
commit | 55d301a2622ff5b63d431b9272caa68224d53843 (patch) | |
tree | b540f05ba3ed45e15260ee7131ce90dc93af753d /cli/commands/cli_os.py | |
parent | 227afb8285b8f178987a7d6eb1d28a74201a5d1b (diff) |
make use of functest_utils.get_parameter_from_yaml
JIRA: FUNCTEST-463
Change-Id: I1d54a65c5bfa2542f2fd3a2e408967641e6e4ac9
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'cli/commands/cli_os.py')
-rw-r--r-- | cli/commands/cli_os.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cli/commands/cli_os.py b/cli/commands/cli_os.py index fc027d5f..4324ae44 100644 --- a/cli/commands/cli_os.py +++ b/cli/commands/cli_os.py @@ -16,13 +16,12 @@ import functest.utils.functest_utils as ft_utils import functest.utils.openstack_clean as os_clean import functest.utils.openstack_snapshot as os_snapshot -functest_yaml = ft_utils.get_functest_yaml() -FUNCTEST_CONF_DIR = functest_yaml.get("general").get( - "directories").get("dir_functest_conf") +FUNCTEST_CONF_DIR = \ + ft_utils.get_functest_config('general.directories.dir_functest_conf') RC_FILE = os.getenv('creds') -OS_SNAPSHOT_FILE = ft_utils.get_parameter_from_yaml( - "general.openstack.snapshot_file") +OS_SNAPSHOT_FILE = \ + ft_utils.get_functest_config("general.openstack.snapshot_file") class CliOpenStack: |