From 3a598218d3b0aa3e9f2995991597d386c8e8247b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 19 Apr 2026 21:25:08 +0530 Subject: [PATCH] Flush streams and sleep before printing crash report --- .github/workflows/ci.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index a60c65635..357266214 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -24,6 +24,9 @@ def do_print_crash_reports() -> None: + sys.stdout.flush() + sys.stderr.flush() + time.sleep(2) print('Printing available crash reports...') if is_macos: end_time = time.monotonic() + 90