aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/result_transform/final_report.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2016-11-03 08:10:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-03 08:10:41 +0000
commit403e8ead12863163573f45c1be07a48c05061f45 (patch)
tree9f0398c9a8e3ebc397e3f30e88a083f09a04d0b5 /benchmarks/playbooks/result_transform/final_report.py
parent10fa387f3ad554a4c42c580b424f79c2171c64d3 (diff)
parenta9d5c798ad0da8494056181cc1b68f85f9b203c9 (diff)
Merge "Remove playbooks directory"
Diffstat (limited to 'benchmarks/playbooks/result_transform/final_report.py')
-rw-r--r--benchmarks/playbooks/result_transform/final_report.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/benchmarks/playbooks/result_transform/final_report.py b/benchmarks/playbooks/result_transform/final_report.py
deleted file mode 100644
index 274742d4..00000000
--- a/benchmarks/playbooks/result_transform/final_report.py
+++ /dev/null
@@ -1,24 +0,0 @@
-import pickle
-import json
-import datetime
-import os
-import sys
-
-home_dir = str((os.popen("echo $HOME").read().rstrip()))
-
-with open('./sys_info_temp', 'r') as sys_info_f:
- sys_info_dict = pickle.load(sys_info_f)
-with open('./result_temp', 'r') as result_f:
- result_dict = pickle.load(result_f)
-
-host_name = (os.popen("hostname").read().rstrip())
-benchmark_name = str(sys.argv[1])
-testcase_name = str(sys.argv[2])
-report_time_stamp = str(datetime.datetime.utcnow().isoformat())
-final_dict = {"name": testcase_name,
- "time": report_time_stamp,
- "system_information": sys_info_dict,
- "details": result_dict}
-
-with open('./' + host_name + '-' + report_time_stamp + '.json', 'w+') as result_json:
- json.dump(final_dict, result_json, indent=4, sort_keys=True)