aboutsummaryrefslogtreecommitdiffstats
path: root/functest/cli
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-11-11 10:57:52 +0100
committerjose.lausuch <jose.lausuch@ericsson.com>2016-11-11 10:57:52 +0100
commit743c670d8bcc9eb72f7bc87b3f854c21d28afd55 (patch)
tree372795e2cd86b414cfd52f4ea4865b10e5eef85b /functest/cli
parentaa3b9e80b769a083d41b41d61daf1cf7869aa98b (diff)
Fix path in CLI after directory restructure
Change-Id: If71f3eb77371274b5215f274a77d5aa9976744fa Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'functest/cli')
-rw-r--r--functest/cli/commands/cli_testcase.py4
-rw-r--r--functest/cli/commands/cli_tier.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/functest/cli/commands/cli_testcase.py b/functest/cli/commands/cli_testcase.py
index 510d740ba..da78ae9c9 100644
--- a/functest/cli/commands/cli_testcase.py
+++ b/functest/cli/commands/cli_testcase.py
@@ -55,9 +55,9 @@ class CliTestcase:
"Run first 'functest env prepare'")
else:
if noclean:
- cmd = ("python %s/ci/run_tests.py "
+ cmd = ("python %s/functest/ci/run_tests.py "
"-n -t %s" % (FUNCTEST_REPO, testname))
else:
- cmd = ("python %s/ci/run_tests.py "
+ cmd = ("python %s/functest/ci/run_tests.py "
"-t %s" % (FUNCTEST_REPO, testname))
ft_utils.execute_command(cmd)
diff --git a/functest/cli/commands/cli_tier.py b/functest/cli/commands/cli_tier.py
index aa0541981..fa2de587c 100644
--- a/functest/cli/commands/cli_tier.py
+++ b/functest/cli/commands/cli_tier.py
@@ -65,9 +65,9 @@ class CliTier:
"Run first 'functest env prepare'")
else:
if noclean:
- cmd = ("python %s/ci/run_tests.py "
+ cmd = ("python %s/functest/ci/run_tests.py "
"-n -t %s" % (FUNCTEST_REPO, tiername))
else:
- cmd = ("python %s/ci/run_tests.py "
+ cmd = ("python %s/functest/ci/run_tests.py "
"-t %s" % (FUNCTEST_REPO, tiername))
ft_utils.execute_command(cmd)