mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
disable osx tests
This commit is contained in:
parent
862530b1a0
commit
21281a236a
2 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -640,6 +640,7 @@ impl Future for LowresTimerDriver {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(not(target_os = "macos"))]
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue