Fix path in CLI after directory restructure
authorjose.lausuch <jose.lausuch@ericsson.com>
Fri, 11 Nov 2016 09:57:52 +0000 (10:57 +0100)
committerjose.lausuch <jose.lausuch@ericsson.com>
Fri, 11 Nov 2016 09:57:52 +0000 (10:57 +0100)
Change-Id: If71f3eb77371274b5215f274a77d5aa9976744fa
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
functest/cli/commands/cli_testcase.py
functest/cli/commands/cli_tier.py

index 510d740..da78ae9 100644 (file)
@@ -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)
index aa05419..fa2de58 100644 (file)
@@ -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)