aboutsummaryrefslogtreecommitdiffstats
path: root/functest/cli/commands/cli_testcase.py
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2017-07-04 07:46:50 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-07-04 07:46:50 +0000
commit2e6b361f4752b4ba5d6f03b469b0983b7b245630 (patch)
treee0c09f20162dfe626cf85639adb468aa613f2038 /functest/cli/commands/cli_testcase.py
parentc14a40a88ff496f981e61837f605027e65b2c345 (diff)
parent0ead7c9e03034bbb40b68a468a6deaa339b0364e (diff)
Merge "Update cli commands to call console scripts"
Diffstat (limited to 'functest/cli/commands/cli_testcase.py')
-rw-r--r--functest/cli/commands/cli_testcase.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/functest/cli/commands/cli_testcase.py b/functest/cli/commands/cli_testcase.py
index 91904d87..cb3d4739 100644
--- a/functest/cli/commands/cli_testcase.py
+++ b/functest/cli/commands/cli_testcase.py
@@ -60,8 +60,5 @@ class CliTestcase(object):
else:
tests = testname.split(",")
for test in tests:
- cmd = ("python %s %s -t %s" %
- (pkg_resources.resource_filename(
- 'functest', 'ci/run_tests.py'),
- flags, test))
+ cmd = "run_tests {}-t {}".format(flags, test)
ft_utils.execute_command(cmd)