From 9c3286c956f2e603b2fd0dcf963e90b724b70d51 Mon Sep 17 00:00:00 2001 From: evanbranigan-dotcom Date: Wed, 8 Apr 2026 09:19:20 -0600 Subject: [PATCH] mark live-chain mnemonic test as ignored the test syncs against mainnet and takes 8+ minutes, making it too slow for default test runs. can still be run explicitly with `cargo test -- --ignored`. fixes #62 Co-Authored-By: Claude Opus 4.6 (1M context) --- zexcavator-tui/src/views/sync.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zexcavator-tui/src/views/sync.rs b/zexcavator-tui/src/views/sync.rs index 285f54b..c11c96f 100644 --- a/zexcavator-tui/src/views/sync.rs +++ b/zexcavator-tui/src/views/sync.rs @@ -391,6 +391,7 @@ mod tests { } #[tokio::test] + #[ignore = "live-chain sync test, too slow for default test runs"] async fn test_mnemonic_vectors_from_file() { let mut path = PathBuf::from(env!("CARGO_MANIFEST_DIR")); path.push("testvectors/mnemonic.json");