fix: Show mrr trials in trending graphs 12/41112/1
authorTibor Frank <tifrank@cisco.com>
Wed, 12 Jun 2024 13:36:25 +0000 (13:36 +0000)
committerTibor Frank <tifrank@cisco.com>
Wed, 12 Jun 2024 13:36:25 +0000 (13:36 +0000)
Change-Id: If5003d4fb718dc1bf76cb6e049b00783e03de8bb
Signed-off-by: Tibor Frank <tifrank@cisco.com>
csit.infra.dash/app/cdash/trending/graphs.py

index b55b18a..8b05f20 100644 (file)
@@ -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,