From 34ca24b23676d847c393dad3d8eebae4e7de2771 Mon Sep 17 00:00:00 2001 From: itowlson Date: Mon, 6 Oct 2025 12:09:31 +1300 Subject: [PATCH] Ignore the flaky private IPs test on all platforms Signed-off-by: itowlson --- crates/factor-outbound-http/tests/factor_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/factor-outbound-http/tests/factor_test.rs b/crates/factor-outbound-http/tests/factor_test.rs index a6dd86cbf0..c2522b42d2 100644 --- a/crates/factor-outbound-http/tests/factor_test.rs +++ b/crates/factor-outbound-http/tests/factor_test.rs @@ -67,7 +67,7 @@ async fn disallowed_host_fails() -> anyhow::Result<()> { Ok(()) } -#[cfg_attr(target_os = "macos", ignore)] +#[ignore = "flaky"] #[tokio::test(flavor = "multi_thread")] async fn disallowed_private_ips_fails() -> anyhow::Result<()> { async fn run_test(allow_private_ips: bool) -> anyhow::Result<()> {