diff --git a/ntex/src/time/mod.rs b/ntex/src/time/mod.rs index dabe6df6..7753a1d1 100644 --- a/ntex/src/time/mod.rs +++ b/ntex/src/time/mod.rs @@ -247,6 +247,7 @@ mod tests { assert!(second_time - first_time >= time::Duration::from_millis(wait_time)); } + #[cfg(not(target_os = "macos"))] #[crate::rt_test] async fn test_interval() { let mut int = interval(Millis(250)); @@ -272,6 +273,7 @@ mod tests { ); } + #[cfg(not(target_os = "macos"))] #[crate::rt_test] async fn test_interval_one_sec() { let int = interval(Millis::ONE_SEC); diff --git a/ntex/src/time/wheel.rs b/ntex/src/time/wheel.rs index 0679670c..c344420a 100644 --- a/ntex/src/time/wheel.rs +++ b/ntex/src/time/wheel.rs @@ -640,6 +640,7 @@ impl Future for LowresTimerDriver { } } +#[cfg(not(target_os = "macos"))] #[cfg(test)] mod tests { use super::*;