From 1560e44eeb02641b602df7fe9214a0822a92c160 Mon Sep 17 00:00:00 2001 From: itowlson Date: Fri, 3 Oct 2025 10:37:36 +1300 Subject: [PATCH] Ignore flaky test on Mac Signed-off-by: itowlson --- crates/factor-outbound-http/tests/factor_test.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/factor-outbound-http/tests/factor_test.rs b/crates/factor-outbound-http/tests/factor_test.rs index 76601fd280..a6dd86cbf0 100644 --- a/crates/factor-outbound-http/tests/factor_test.rs +++ b/crates/factor-outbound-http/tests/factor_test.rs @@ -67,6 +67,7 @@ async fn disallowed_host_fails() -> anyhow::Result<()> { Ok(()) } +#[cfg_attr(target_os = "macos", ignore)] #[tokio::test(flavor = "multi_thread")] async fn disallowed_private_ips_fails() -> anyhow::Result<()> { async fn run_test(allow_private_ips: bool) -> anyhow::Result<()> {