diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-06 09:48:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-06 09:48:03 +0000 |
commit | 67c7bee7345bbc7f4cf7b046f93cb1c049481099 (patch) | |
tree | c304d759de88bbc4e3b400b60e161599cd607b83 | |
parent | 11cd92c210b3ee1099fb2f91e80fbb989d385491 (diff) | |
parent | a1feb930e618a14c60303acdfb055516fcc92b54 (diff) |
Merge "remove useless method get_dashboard_cases() in testAPI"
-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 |