From a1074954e00c858ba77c51d835b09a826d063593 Mon Sep 17 00:00:00 2001 From: teor Date: Wed, 15 Jun 2022 10:31:18 +1000 Subject: [PATCH] Disable zcash_rpc_conflict test on macOS (#4614) --- zebrad/tests/acceptance.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zebrad/tests/acceptance.rs b/zebrad/tests/acceptance.rs index 628a543e4..5fef4b6c9 100644 --- a/zebrad/tests/acceptance.rs +++ b/zebrad/tests/acceptance.rs @@ -1358,8 +1358,11 @@ fn zebra_tracing_conflict() -> Result<()> { /// Start 2 zebrad nodes using the same RPC listener port, but different /// state directories and Zcash listener ports. The first node should get /// exclusive use of the port. The second node will panic. +/// +/// This test is sometimes unreliable on Windows, and hangs on macOS. +/// We believe this is a CI infrastructure issue, not a platform-specific issue. #[test] -#[cfg(not(target_os = "windows"))] +#[cfg(not(any(target_os = "windows", target_os = "macos")))] fn zebra_rpc_conflict() -> Result<()> { zebra_test::init();