Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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$/)
)
&
Expand Down
Loading