Disable `test_simultaneous_multiple_create_delete_single_thread` on Windows (#16834)

Closes https://github.com/astral-sh/uv/issues/16096
This commit is contained in:
Zanie Blue 2025-11-24 09:10:34 -06:00 committed by GitHub
parent d6eb285f02
commit 1a6238c835
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -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] #[tokio::test]
#[cfg(any(target_os = "macos", target_os = "windows"))] #[cfg(target_os = "macos")]
async fn test_simultaneous_multiple_create_delete_single_thread() { async fn test_simultaneous_multiple_create_delete_single_thread() {
init_logger(); init_logger();