From 09de7b538a903fe1a63e4e65c3c6cfef1a6f4d68 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 30 Jul 2019 17:03:20 -0400 Subject: [PATCH] formatting: black benchmark.py Signed-off-by: Jonathan Rajotte --- scripts/babeltrace-benchmark/benchmark.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/scripts/babeltrace-benchmark/benchmark.py b/scripts/babeltrace-benchmark/benchmark.py index c7dc999..dc1311e 100644 --- a/scripts/babeltrace-benchmark/benchmark.py +++ b/scripts/babeltrace-benchmark/benchmark.py @@ -204,7 +204,10 @@ def plot_raw_value(branch, benchmark_type, x_data, y_data, labels, latest_values plt.tight_layout() return -def plot_delta_between_point(branch, benchmark_type, x_data, y_data, labels, latest_values): + +def plot_delta_between_point( + branch, benchmark_type, x_data, y_data, labels, latest_values +): """ Plot the graph of delta between each sequential commit. """ @@ -229,7 +232,10 @@ def plot_delta_between_point(branch, benchmark_type, x_data, y_data, labels, lat ax = plt.gca() plt.xticks(x_data, labels, rotation=90, family="monospace") - plt.title(graph_get_title(branch, benchmark_type) + " Delta to previous commit", fontweight="bold") + plt.title( + graph_get_title(branch, benchmark_type) + " Delta to previous commit", + fontweight="bold", + ) plt.ylabel("Seconds") plt.xlabel("Latest commits") plt.legend() @@ -240,6 +246,7 @@ def plot_delta_between_point(branch, benchmark_type, x_data, y_data, labels, lat plt.tight_layout() return + def plot_ratio(branch, benchmark_type, x_data, y_data, labels, latest_values): """ Plot the graph using a ratio using first point as reference (0%). @@ -299,6 +306,7 @@ def plot_ratio(branch, benchmark_type, x_data, y_data, labels, latest_values): plt.tight_layout() return + def generate_graph(branches, report_name, git_path): # The PDF document @@ -359,7 +367,9 @@ def generate_graph(branches, report_name, git_path): pdf_pages.savefig(fig) fig = plt.figure(figsize=(width, 8.27), dpi=100) - plot_delta_between_point(branch, b_type, x_data, y_data, labels, latest_values) + plot_delta_between_point( + branch, b_type, x_data, y_data, labels, latest_values + ) pdf_pages.savefig(fig) pdf_pages.close() -- 2.34.1