From 1a75387fa8eeecc31877f569364c1479635f9109 Mon Sep 17 00:00:00 2001 From: ethernet Date: Fri, 26 Jun 2026 20:27:05 -0400 Subject: [PATCH] change(ci): log json decode error in durations --- scripts/run_tests_parallel.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/run_tests_parallel.py b/scripts/run_tests_parallel.py index 4edbd7bcd03..d2febba3632 100755 --- a/scripts/run_tests_parallel.py +++ b/scripts/run_tests_parallel.py @@ -469,7 +469,8 @@ def _load_durations(repo_root: Path) -> dict[str, float]: return {} try: return json.loads(path.read_text()) - except (json.JSONDecodeError, OSError): + except (json.JSONDecodeError, OSError) as e: + print("[ERROR] Failed to load json durations file! {e}") return {}