Skip to content
Snippets Groups Projects
Unverified Commit 6792d4b5 authored by Alexander Theißen's avatar Alexander Theißen Committed by GitHub
Browse files

Disable flaky test (#3602)


Unfortunately, the flakiness wasn't fixed by
https://github.com/paritytech/polkadot-sdk/pull/3595. Let's disable the
test in the meanwhile since it is hanging on the CI a lot.

---------

Co-authored-by: default avatarLiam Aharon <liam.aharon@hotmail.com>
parent c89b3997
Branches
No related merge requests found
Pipeline #452886 canceled with stages
in 22 minutes and 46 seconds
...@@ -467,7 +467,10 @@ mod tests { ...@@ -467,7 +467,10 @@ mod tests {
assert_eq!(client.header(created_block.hash).unwrap().unwrap().number, 1) 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() { async fn instant_seal_delayed_finalize() {
let builder = TestClientBuilder::new(); let builder = TestClientBuilder::new();
let (client, select_chain) = builder.build_with_longest_chain(); let (client, select_chain) = builder.build_with_longest_chain();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment