fickle
A macro for handling fickle (flaky) tests in rust.
By default, it will re-run your test 1 time, if the first time fails.
You can specify more runs like so
A macro for handling fickle (flaky) tests in rust.
By default, it will re-run your test 1 time, if the first time fails.
#[test]
#[fickle]
fn my_test() {
// your test here
}
You can specify more runs like so
#[test]
#[fickle(retries=3)]
fn my_test() {
// your test here
}