aboutsummaryrefslogtreecommitdiffstats
path: root/csit.infra.dash
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2024-06-12 13:36:25 +0000
committerTibor Frank <tifrank@cisco.com>2024-06-12 13:36:25 +0000
commit44c25c9e73326725855faf040da3b1e2a88509f1 (patch)
treedeb3433f253ebef507ea5aa1bd38ab834a2994e7 /csit.infra.dash
parent7741a2eff942af428b2955b111e5edac5d722f6c (diff)
fix: Show mrr trials in trending graphs
Change-Id: If5003d4fb718dc1bf76cb6e049b00783e03de8bb Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'csit.infra.dash')
-rw-r--r--csit.infra.dash/app/cdash/trending/graphs.py2
1 files changed, 1 insertions, 1 deletions
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,