From 1a6238c835e4735999ea7180bb78f5361348725b Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 24 Nov 2025 09:10:34 -0600 Subject: [PATCH] Disable `test_simultaneous_multiple_create_delete_single_thread` on Windows (#16834) Closes https://github.com/astral-sh/uv/issues/16096 --- crates/uv-keyring/tests/threading.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/uv-keyring/tests/threading.rs b/crates/uv-keyring/tests/threading.rs index a67440934..e12ba75f4 100644 --- a/crates/uv-keyring/tests/threading.rs +++ b/crates/uv-keyring/tests/threading.rs @@ -236,8 +236,10 @@ async fn test_multiple_create_delete_single_thread() { } } +/// Empirically, this test frequently flakes on Windows indicating that these operations are +/// not concurrency-safe. #[tokio::test] -#[cfg(any(target_os = "macos", target_os = "windows"))] +#[cfg(target_os = "macos")] async fn test_simultaneous_multiple_create_delete_single_thread() { init_logger();