aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_CPTA.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-04-09 16:13:14 +0200
committerTibor Frank <tifrank@cisco.com>2018-04-09 16:13:14 +0200
commit6ea69cafac7f15af3abc161bbc200ab2bd320e87 (patch)
tree705249ada7399b4cbae5743b25f3ee8e0df79628 /resources/tools/presentation/generator_CPTA.py
parent061ea1864e550ea7f9fbc6bc2a096b2cedd94b96 (diff)
PAL Trending: Add build date to csv and txt tables
Change-Id: I75e614b45bcf1b38709b551ba13bc6e54d2c978d Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_CPTA.py')
-rw-r--r--resources/tools/presentation/generator_CPTA.py22
1 files changed, 17 insertions, 5 deletions
diff --git a/resources/tools/presentation/generator_CPTA.py b/resources/tools/presentation/generator_CPTA.py
index 9cce8ed8b2..967eb6003d 100644
--- a/resources/tools/presentation/generator_CPTA.py
+++ b/resources/tools/presentation/generator_CPTA.py
@@ -362,13 +362,25 @@ def _generate_all_charts(spec, input_data):
:type input_data: InputData
"""
- csv_table = list()
- # Create the header:
builds = spec.cpta["data"].values()[0]
job_name = spec.cpta["data"].keys()[0]
builds_lst = [str(build) for build in range(builds[0], builds[-1] + 1)]
+
+ # Get "build ID": "date" dict:
+ build_dates = dict()
+ for build in builds_lst:
+ try:
+ build_dates[build] = \
+ input_data.metadata(job_name, build)["generated"][:14]
+ except KeyError:
+ pass
+
+ # Create the header:
+ csv_table = list()
header = "Build Number:," + ",".join(builds_lst) + '\n'
csv_table.append(header)
+ header = "Build Date:," + ",".join(build_dates.values()) + '\n'
+ csv_table.append(header)
results = list()
for chart in spec.cpta["plots"]:
@@ -445,19 +457,19 @@ def _generate_all_charts(spec, input_data):
txt_table = None
with open("{0}.csv".format(file_name), 'rb') as csv_file:
csv_content = csv.reader(csv_file, delimiter=',', quotechar='"')
- header = True
+ line_nr = 0
for row in csv_content:
if txt_table is None:
txt_table = prettytable.PrettyTable(row)
- header = False
else:
- if not header:
+ if line_nr > 1:
for idx, item in enumerate(row):
try:
row[idx] = str(round(float(item) / 1000000, 2))
except ValueError:
pass
txt_table.add_row(row)
+ line_nr += 1
txt_table.align["Build Number:"] = "l"
with open("{0}.txt".format(file_name), "w") as txt_file:
txt_file.write(str(txt_table))