Temporarily disable it_cancels_delayed_firings.

This test is timing-dependent in a way that seems to fail on heavily
loaded CI machines. See #545.
This commit is contained in:
Nick Mathewson 2022-11-10 11:58:35 -05:00
parent d9788c16b3
commit 71510fbd96
1 changed files with 5 additions and 0 deletions

View File

@ -342,7 +342,12 @@ mod test {
});
}
// This test is disabled because it was flaky when the CI servers were
// heavily loaded. (See #545.)
//
// TODO: Let's fix this test and make it more reliable, then re-enable it.
#[test]
#[ignore]
fn it_cancels_delayed_firings() {
test_with_all_runtimes!(|rt| async move {
let (mut sch, hdl) = TaskSchedule::new(rt.clone());