From 62a2dfc17e2efb404cf8bda3cc46a5b6b25329f6 Mon Sep 17 00:00:00 2001 From: zancas Date: Thu, 26 Feb 2026 15:19:12 -0800 Subject: [PATCH] ignore more flakes in PR CI --- .config/nextest.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.config/nextest.toml b/.config/nextest.toml index 196be1c7a..d7e7fa84f 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -29,7 +29,7 @@ slow-timeout = { period = "60s", terminate-after = "10" } # of the expression, slow at the end. If a slow and flakey test is discovered it should be included # in the flakey category. # On a developer laptop: -# flakey 63 == tests fail at least once +# flakey 74 == tests fail at least once # slow 32 == >60s runtime default-filter = """ not ( @@ -95,6 +95,17 @@ default-filter = """ test(/^zebra::get::get_mempool_info$/) | test(/^zebra::get::raw_mempool_regtest$/) | test(/^zcashd::zcash_indexer::get_mining_info$/) | + test(/^zcashd::zcash_indexer::z_get_address_balance$/) | + test(/^zcashd::zcash_indexer::get_block_count$/) | + test(/^zcashd::zcash_indexer::z_get_block$/) | + test(/^zcashd::zcash_indexer::validate_address$/) | + test(/^zcashd::zcash_indexer::get_best_blockhash$/) | + test(/^zcashd::zcash_indexer::get_peer_info$/) | + test(/^zcashd::zcash_indexer::check_info_with_cookie$/) | + test(/^zcashd::zcash_indexer::get_block_header$/) | + test(/^zcashd::zcash_indexer::get_block_deltas$/) | + test(/^zcashd::zcash_indexer::z_get_address_utxos$/) | + test(/^zcashd::zcash_indexer::get_address_tx_ids$/) | test(/^zebrad::process_200_blocks$/) ) &