Disable zcash_rpc_conflict test on macOS (#4614)

This commit is contained in:
teor 2022-06-15 10:31:18 +10:00 committed by GitHub
parent 0df98038ed
commit a1074954e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1358,8 +1358,11 @@ fn zebra_tracing_conflict() -> Result<()> {
/// Start 2 zebrad nodes using the same RPC listener port, but different /// Start 2 zebrad nodes using the same RPC listener port, but different
/// state directories and Zcash listener ports. The first node should get /// state directories and Zcash listener ports. The first node should get
/// exclusive use of the port. The second node will panic. /// 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] #[test]
#[cfg(not(target_os = "windows"))] #[cfg(not(any(target_os = "windows", target_os = "macos")))]
fn zebra_rpc_conflict() -> Result<()> { fn zebra_rpc_conflict() -> Result<()> {
zebra_test::init(); zebra_test::init();