diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-06 11:04:45 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-06-06 14:25:37 +0800 |
commit | a1feb930e618a14c60303acdfb055516fcc92b54 (patch) | |
tree | 06d5cd824d53784df046b71cc586c04caea3d335 /result_collection_api | |
parent | c50f95a4e05af030f183af132ad4a5f46121e03f (diff) |
remove useless method get_dashboard_cases() in testAPI
remove get_dashboard_cases() method in dashboard_utils.py
JIRA: FUNCTEST-295
Change-Id: Id450f3d9c2b4870a0a9da42abd536a412ac25323
signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'result_collection_api')
-rw-r--r-- | result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py b/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py index f331e28..121875d 100644 --- a/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py +++ b/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py @@ -51,22 +51,6 @@ def check_dashboard_ready_case(project, case): return eval(cmd) -def get_dashboard_cases(): - # Retrieve all the test cases that could provide - # Dashboard ready graphs - # look in the releng repo - # search all the project2Dashboard.py files - # we assume that dashboard processing of project <Project> - # is performed in the <Project>2Dashboard.py file - modules = [] - cp = re.compile('dashboard.*2Dashboard') - for module in sys.modules: - if re.match(cp, module): - modules.append(module) - - return modules - - def get_dashboard_projects(): # Retrieve all the projects that could provide # Dashboard ready graphs |