Skip to content

Commit

Permalink
Disable flaky test (paritytech#3602)
Browse files Browse the repository at this point in the history
Unfortunately, the flakiness wasn't fixed by
paritytech#3595. Let's disable the
test in the meanwhile since it is hanging on the CI a lot.

---------

Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
  • Loading branch information
athei and liamaharon authored Mar 7, 2024
1 parent e0e6860 commit 3b811f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion substrate/client/consensus/manual-seal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,10 @@ mod tests {
assert_eq!(client.header(created_block.hash).unwrap().unwrap().number, 1)
}

#[tokio::test]
// TODO: enable once the flakiness is fixed
// See https://github.com/paritytech/polkadot-sdk/issues/3603
//#[tokio::test]
#[allow(unused)]
async fn instant_seal_delayed_finalize() {
let builder = TestClientBuilder::new();
let (client, select_chain) = builder.build_with_longest_chain();
Expand Down

0 comments on commit 3b811f1

Please sign in to comment.