diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-11-24 10:32:53 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-12-07 14:36:26 +0800 |
commit | c5c6dce10bfa43dacd3043ebe9942689eed8b9a4 (patch) | |
tree | 6af9c1a441b2bd6f6c33a84b16ed096d2f680afc /functest/utils | |
parent | c10898356f97b3f2e5c39928e4133570b75a52e1 (diff) |
abstract umbrella part to make integration code simpler
implement an abstract class Umbrella, and take parser for instance
JIRA: FUNCTEST-618
Change-Id: Iadf71ad49abd901b9659cb71135fc902a3b616d1
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'functest/utils')
-rw-r--r-- | functest/utils/functest_utils.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index a25967b6..3fafd4bf 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -418,23 +418,6 @@ def merge_dicts(dict1, dict2): yield (k, dict2[k]) -def check_test_result(test_name, ret, start_time, stop_time): - def get_criteria_value(): - return get_criteria_by_test(test_name).split('==')[1].strip() - - status = 'FAIL' - if str(ret) == get_criteria_value(): - status = 'PASS' - - details = { - 'timestart': start_time, - 'duration': round(stop_time - start_time, 1), - 'status': status, - } - - return status, details - - def get_testcases_file_dir(): return "/home/opnfv/repos/functest/functest/ci/testcases.yaml" |