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 {}