From: SerenaFeng Date: Mon, 6 Jun 2016 03:04:45 +0000 (+0800) Subject: remove useless method get_dashboard_cases() in testAPI X-Git-Tag: colorado.1.0~390^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=5db3cfed8a669e2ff405f846937e04a9b08630ac;p=releng.git 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 Signed-off-by: SerenaFeng --- diff --git a/utils/test/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py b/utils/test/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py index f331e28cd..121875d02 100644 --- a/utils/test/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py +++ b/utils/test/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 - # is performed in the 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