diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-05-15 10:49:15 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-05-15 10:49:15 +0200 |
commit | 1cdffc39203589d5da2588927760762129ce2976 (patch) | |
tree | 2fbbd52e367e8509fd14fe1dc83b10c2cc04c919 | |
parent | 6d4268a223982256d6c4ebc9be54f43664f42875 (diff) |
CSIT-1504: Soak tests - box plots
Change-Id: I29a25dad1fee07c0a387dc985718eae858abb2f4
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-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): |