summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-06-06 09:48:02 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-06-06 09:48:03 +0000
commit1fe98dbd9ea08d14f6d14ceb0309903f4031961d (patch)
tree462084741a9475a6a16c7b82c4d36d91f2e9b1ff /utils/test/result_collection_api
parent292edd26386a48dbc58e811b6ffb06757da79eb6 (diff)
parent5db3cfed8a669e2ff405f846937e04a9b08630ac (diff)
Merge "remove useless method get_dashboard_cases() in testAPI"
Diffstat (limited to 'utils/test/result_collection_api')
-rw-r--r--utils/test/result_collection_api/opnfv_testapi/dashboard/dashboard_utils.py16
1 files changed, 0 insertions, 16 deletions
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 <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