From ac160cac1218dcecacdfca2a61f054ab3ecd5c62 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 4 Jan 2025 10:55:09 -0800 Subject: [PATCH] chore: Ignore exceptions during Rust target directory cleanup --- benchmark/benchmark.py | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index 1a425ed47..efbb3a466 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -861,6 +861,7 @@ def run_test_real( shutil.rmtree(target_dir) print(f"Cleaned up Rust target/debug directory: {target_dir}") except Exception as e: + # ignore all these exceptions on cleanup. ai! print(f"Failed to clean up Rust target/debug directory: {e}") # Java build directories