mirror of https://github.com/astral-sh/uv
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:
parent
d6eb285f02
commit
1a6238c835
|
|
@ -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();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue