From 56cd963fd71170508da484653dbfb9378b8993d6 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 28 Jun 2021 23:13:25 +0000 Subject: [PATCH] Ignore flaky tests (#18278) (#18282) (cherry picked from commit 639a61d6390b854edd2247d7c6b7bea00732e45a) Co-authored-by: Tyera Eulberg --- local-cluster/tests/local_cluster.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/local-cluster/tests/local_cluster.rs b/local-cluster/tests/local_cluster.rs index 6e7a241580..f5c7631e98 100644 --- a/local-cluster/tests/local_cluster.rs +++ b/local-cluster/tests/local_cluster.rs @@ -2848,12 +2848,14 @@ fn test_hard_fork_invalidates_tower() { #[test] #[serial] +#[ignore] fn test_no_optimistic_confirmation_violation_with_tower() { do_test_optimistic_confirmation_violation_with_or_without_tower(true); } #[test] #[serial] +#[ignore] fn test_optimistic_confirmation_violation_without_tower() { do_test_optimistic_confirmation_violation_with_or_without_tower(false); }