set some flaky tests as #[ignore] (#1432)

Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/1432
This commit is contained in:
Alex Auvolat
2026-05-01 14:44:28 +00:00
committed by Alex
parent 3c983ac5e0
commit be203494c5
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -13,12 +13,14 @@ use crate::peering::*;
use crate::NodeID;
#[tokio::test(flavor = "current_thread")]
#[ignore = "flaky"]
async fn test_with_basic_scheduler() {
pretty_env_logger::init();
run_test(19980).await;
}
#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
#[ignore = "flaky"]
async fn test_with_threaded_scheduler() {
run_test(19990).await;
}