diff options
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 6 | ||||
-rw-r--r-- | resources/tools/presentation/input_data_parser.py | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 70faffc8f4..cc9d880398 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -734,7 +734,6 @@ def plot_perf_box_name(plot, input_data): test_type = u"HOSTSTACK" elif test[u"type"] in (u"LDP_NGINX",): - logging.info(test) if u"TCP_CPS" in test[u"tags"]: test_type = u"VSAP_CPS" y_vals[test[u"parent"]].append( @@ -796,7 +795,10 @@ def plot_perf_box_name(plot, input_data): try: val_max = max(df_y[col]) if val_max: - y_max.append(int(val_max / 1e6)) + if test_type in (u"VSAP_CPS", u"VSAP_RPS"): + y_max.append(int(val_max)) + else: + y_max.append(int(val_max / 1e6)) except (ValueError, TypeError) as err: logging.error(repr(err)) continue diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 7de6e54885..9e61c09d53 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -833,8 +833,7 @@ class ExecutionChecker(ResultVisitor): return result, status status = "PASS" except (IndexError, ValueError) as err: - logging.info(err) - logging.info(result) + logging.warning(err) return result, status def visit_suite(self, suite): |