From 274c579d81579ae0152695117c790654b745e2dd Mon Sep 17 00:00:00 2001 From: Dan Saunders Date: Wed, 1 Oct 2025 16:31:39 -0400 Subject: [PATCH] handle race cond --- tests/cli/test_cli_preprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/test_cli_preprocess.py b/tests/cli/test_cli_preprocess.py index b213e43da..9011616b3 100644 --- a/tests/cli/test_cli_preprocess.py +++ b/tests/cli/test_cli_preprocess.py @@ -14,7 +14,7 @@ def cleanup_last_run_prepared(): yield if Path("last_run_prepared").exists(): - shutil.rmtree("last_run_prepared") + shutil.rmtree("last_run_prepared", ignore_errors=True) def test_preprocess_config_not_found(cli_runner):