From b33cdd8b24abe91b133c6e51252b92c5c37c16bf Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Wed, 22 Oct 2025 09:55:28 +0100 Subject: [PATCH] test: ignore tests on macos --- crates/biome_service/src/scanner/watcher.tests.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/biome_service/src/scanner/watcher.tests.rs b/crates/biome_service/src/scanner/watcher.tests.rs index dbc4d5be15c2..f5b89484ea82 100644 --- a/crates/biome_service/src/scanner/watcher.tests.rs +++ b/crates/biome_service/src/scanner/watcher.tests.rs @@ -23,6 +23,7 @@ use crate::{ use super::*; #[test] +#[cfg_attr(target_os = "macos", ignore = "flaky on macOS")] fn should_index_on_write_but_not_on_read() { let file_path = Utf8Path::new("foo.js"); @@ -95,6 +96,7 @@ fn should_index_on_write_but_not_on_read() { } #[test] +#[cfg_attr(target_os = "macos", ignore = "flaky on macOS")] fn should_index_on_create_and_unload_on_delete() { let fs = TemporaryFs::new("should_index_on_create_and_unload_on_delete");