It'd be great to support ignoring tests, due to, e.g., flakiness.
Sample usage:
#[ignore = "flaky"]
#[quickcheck_async::tokio]
async fn no_young_data_cleanups(depth: u8, current_epoch: u8, unreachable_nodes: u8) {
This compiled fine but the test was still executed, which is an unexpected behaviour.
It'd be great to support ignoring tests, due to, e.g., flakiness.
Sample usage:
This compiled fine but the test was still executed, which is an unexpected behaviour.