aboutsummaryrefslogtreecommitdiffstats
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:37:41 +0000
commit5330cffda46d65dce1576d18b11377600ca6b14a (patch)
tree48f75f8f0b263fa247d1185d79ef0e2f94d5a647
parentae3b6fb6ed91d2ad05ec60efdc3731bd1175b6b6 (diff)
fix: Show mrr trials in trending graphs
Change-Id: If5003d4fb718dc1bf76cb6e049b00783e03de8bb Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 44c25c9e73326725855faf040da3b1e2a88509f1)
-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,