diff options
Diffstat (limited to 'resources')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index b3e28dda8b..97f813d848 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -99,6 +99,9 @@ def plot_performance_box(plot, input_data): append(test["throughput"]["NDR"]["LOWER"]) else: continue + elif test["type"] in ("SOAK", ): + y_vals[test["parent"]].\ + append(test["throughput"]["LOWER"]) else: continue except (KeyError, TypeError): |