X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_CPTA.py;h=69c52d4180f2ae3fe17c8a307ef0f1602b76a056;hp=2e9abde13c865e5df8c1f71ebddee1bb25dbb49b;hb=c623ad8042127fcb4bbd3c9ffb646f40371b7510;hpb=4eda23fc4270aa7db20b0f4579b10370e76593df diff --git a/resources/tools/presentation/generator_CPTA.py b/resources/tools/presentation/generator_CPTA.py index 2e9abde13c..69c52d4180 100644 --- a/resources/tools/presentation/generator_CPTA.py +++ b/resources/tools/presentation/generator_CPTA.py @@ -424,9 +424,6 @@ def _generate_all_charts(spec, input_data): idx += 1 # Generate the chart: - period_name = "Daily" if period == 1 else \ - "Weekly" if period < 20 else "Monthly" - chart["layout"]["title"] = chart["title"].format(period=period_name) _generate_chart(traces, chart["layout"], file_name="{0}-{1}-{2}{3}".format( @@ -443,7 +440,7 @@ def _generate_all_charts(spec, input_data): file_handler.writelines(csv_table) txt_table = None - with open("{0}.csv".format("cpta-trending"), 'rb') as csv_file: + with open("{0}.csv".format(file_name), 'rb') as csv_file: csv_content = csv.reader(csv_file, delimiter=',', quotechar='"') header = True for row in csv_content: @@ -459,7 +456,7 @@ def _generate_all_charts(spec, input_data): pass txt_table.add_row(row) txt_table.align["Build Number:"] = "l" - with open("{0}.txt".format("cpta-trending"), "w") as txt_file: + with open("{0}.txt".format(file_name), "w") as txt_file: txt_file.write(str(txt_table)) # Evaluate result: