From 639a61d6390b854edd2247d7c6b7bea00732e45a Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Mon, 28 Jun 2021 15:15:21 -0600 Subject: [PATCH] Ignore flaky tests (#18278) --- 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 6e7a24158..f5c7631e9 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); }