diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-11-10 15:53:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-10 15:53:20 +0000 |
commit | 3718b1de246a72e4cd1d10efdaa861643544db61 (patch) | |
tree | 75be42b8fe53b9874d085d194636e8794474c202 /functest/cli | |
parent | a4ecec5b8dc4041df494a837f5030d73b15c1d3b (diff) | |
parent | 0157be0431600dd56aaaa3260b72cc40011f91ac (diff) |
Merge "change path for python ci files"
Diffstat (limited to 'functest/cli')
-rw-r--r-- | functest/cli/commands/cli_env.py | 3 | ||||
-rw-r--r-- | functest/cli/commands/cli_os.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/functest/cli/commands/cli_env.py b/functest/cli/commands/cli_env.py index 57201264..d331cc15 100644 --- a/functest/cli/commands/cli_env.py +++ b/functest/cli/commands/cli_env.py @@ -19,6 +19,7 @@ FUNCTEST_REPO = ft_utils.FUNCTEST_REPO class CliEnv: + def __init__(self): pass @@ -36,7 +37,7 @@ class CliEnv: else: answer = raw_input("Invalid answer. Please type [y|n]\n") - cmd = ("python %s/ci/prepare_env.py start" % FUNCTEST_REPO) + cmd = ("python %s/functest/ci/prepare_env.py start" % FUNCTEST_REPO) ft_utils.execute_command(cmd) def show(self): diff --git a/functest/cli/commands/cli_os.py b/functest/cli/commands/cli_os.py index 2f3f329f..2530b5f2 100644 --- a/functest/cli/commands/cli_os.py +++ b/functest/cli/commands/cli_os.py @@ -79,7 +79,7 @@ class CliOpenStack: def check(self): self.ping_endpoint() - cmd = ft_utils.FUNCTEST_REPO + "/ci/check_os.sh" + cmd = ft_utils.FUNCTEST_REPO + "/functest/ci/check_os.sh" ft_utils.execute_command(cmd, verbose=False) def snapshot_create(self): |