diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-01-10 08:54:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-10 08:54:16 +0000 |
commit | ceebb672c85c5dbce6df17f0c263375d17adcc05 (patch) | |
tree | 807b3fbdcef0025eb56d2c8b093e7f7d24ed3a9a /api/resources/release_action.py | |
parent | 45db0fdabb4585b96756a390650181a3c46facf7 (diff) | |
parent | 254414758828a12a353e0670704faa5bcb792cae (diff) |
Merge "Record test case names when run a task using API"
Diffstat (limited to 'api/resources/release_action.py')
-rw-r--r-- | api/resources/release_action.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/api/resources/release_action.py b/api/resources/release_action.py index fda0ffd32..d4dc246ef 100644 --- a/api/resources/release_action.py +++ b/api/resources/release_action.py @@ -23,8 +23,8 @@ def runTestCase(args): except KeyError: return common_utils.error_handler('Lack of testcase argument') - testcase = os.path.join(conf.TEST_CASE_PATH, - conf.TEST_CASE_PRE + testcase + '.yaml') + testcase_name = conf.TEST_CASE_PRE + testcase + testcase = os.path.join(conf.TEST_CASE_PATH, testcase_name + '.yaml') task_id = str(uuid.uuid4()) @@ -33,6 +33,10 @@ def runTestCase(args): logger.debug('The command_list is: %s', command_list) logger.debug('Start to execute command list') - common_utils.exec_command_task(command_list, task_id) + task_dict = { + 'task_id': task_id, + 'details': testcase_name + } + common_utils.exec_command_task(command_list, task_dict) return common_utils.result_handler('success', task_id) |