diff options
author | yuyang <Gabriel.yuyang@huawei.com> | 2017-03-25 18:31:39 +0800 |
---|---|---|
committer | Yu Yang (Gabriel) <Gabriel.yuyang@huawei.com> | 2017-03-27 10:42:19 +0000 |
commit | 0d41307d670de19f1a27cda743bbac4d87367d0c (patch) | |
tree | 4517ceca7461c2c2478085337556cc00677641e7 /cli/command_group/testcase.py | |
parent | 2604410091fac91d2e9ad9ca62092dc9938ed707 (diff) |
CLI acommadation to the current test case calling method
JIRA: BOTTLENECK-144
Calling method of POSCA test case has changed. CLI for calling
the run test case script should also adjust.
Change-Id: Ia007b658903c8133c824358943f325b070d1e195
Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
(cherry picked from commit 2bf5dbd9b63288e8ce77c7c4e42df8b1e4deb2ce)
Diffstat (limited to 'cli/command_group/testcase.py')
-rw-r--r-- | cli/command_group/testcase.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/command_group/testcase.py b/cli/command_group/testcase.py index 1fe0fba7..33c15786 100644 --- a/cli/command_group/testcase.py +++ b/cli/command_group/testcase.py @@ -22,5 +22,4 @@ class Testcase(object): self.test_case_list = [] def run(self, testname, noclean=False): - if testname == 'posca': - os.system('bash /home/opnfv/bottlenecks/run_tests.sh -s posca') + os.system('bash /home/opnfv/bottlenecks/run_tests.sh ' + testname) |