Skip to content

Commit

Permalink
ignore metrics test
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky committed Dec 3, 2024
1 parent 5574beb commit 8b8b0df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use quilkin::{

#[tokio::test]
#[cfg_attr(target_os = "macos", ignore)]
#[ignore]
async fn metrics_server() {
let mut t = TestHelper::default();

Expand Down Expand Up @@ -65,7 +66,7 @@ async fn metrics_server() {
tracing::info!(address = %local_addr, "Sending hello");
socket.send_to(b"hello", &local_addr).await.unwrap();

let _ = tokio::time::timeout(std::time::Duration::from_millis(100), recv_chan.recv())
let _ = tokio::time::timeout(std::time::Duration::from_secs(16), recv_chan.recv())
.await
.unwrap()
.unwrap();
Expand Down

0 comments on commit 8b8b0df

Please sign in to comment.