From d2145886fcaa40dd8cad3e5a00202bf1ce2fa017 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Wed, 2 Aug 2023 10:03:42 +1000 Subject: [PATCH] Exclude some failing tests due to regression since Rust 1.70 --- consensus/fork_choice/tests/tests.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/consensus/fork_choice/tests/tests.rs b/consensus/fork_choice/tests/tests.rs index 9d39eb3e383..e93894ace38 100644 --- a/consensus/fork_choice/tests/tests.rs +++ b/consensus/fork_choice/tests/tests.rs @@ -1346,6 +1346,8 @@ async fn weak_subjectivity_check_epoch_boundary_is_skip_slot_failure() { /// Checks that `ProgressiveBalancesCache` is updated correctly after an attester slashing event, /// where the slashed validator is a target attester in previous / current epoch. +/// Note: disabled on Windows CI for now until Rust 1.73 release due to regression in windows. +#[cfg(unix)] #[tokio::test] async fn progressive_balances_cache_attester_slashing() { ForkChoiceTest::new_with_progressive_balances_mode(ProgressiveBalancesMode::Strict) @@ -1377,6 +1379,8 @@ async fn progressive_balances_cache_attester_slashing() { /// Checks that `ProgressiveBalancesCache` is updated correctly after a proposer slashing event, /// where the slashed validator is a target attester in previous / current epoch. +/// Note: disabled on Windows CI for now until Rust 1.73 release due to regression in windows. +#[cfg(unix)] #[tokio::test] async fn progressive_balances_cache_proposer_slashing() { ForkChoiceTest::new_with_progressive_balances_mode(ProgressiveBalancesMode::Strict)