From: Tibor Frank Date: Wed, 12 Jun 2024 13:36:25 +0000 (+0000) Subject: fix: Show mrr trials in trending graphs X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F12%2F41112%2F1;p=csit.git fix: Show mrr trials in trending graphs Change-Id: If5003d4fb718dc1bf76cb6e049b00783e03de8bb Signed-off-by: Tibor Frank --- diff --git a/csit.infra.dash/app/cdash/trending/graphs.py b/csit.infra.dash/app/cdash/trending/graphs.py index b55b18a444..8b05f209cc 100644 --- a/csit.infra.dash/app/cdash/trending/graphs.py +++ b/csit.infra.dash/app/cdash/trending/graphs.py @@ -406,7 +406,7 @@ def graph_trending( for idx_run in range(len(x_axis)): try: y_axis.append(y_data[idx_run][idx_trial] * nf) - except IndexError: + except (IndexError, TypeError, ValueError): y_axis.append(nan) traces.append(go.Scatter( x=x_axis,