diff --git a/testing/ef_tests/check_all_files_accessed.py b/testing/ef_tests/check_all_files_accessed.py index e4f0745169..9be9d9dbed 100755 --- a/testing/ef_tests/check_all_files_accessed.py +++ b/testing/ef_tests/check_all_files_accessed.py @@ -43,7 +43,11 @@ excluded_paths = [ "bls12-381-tests/hash_to_G2", "tests/.*/eip6110", "tests/.*/whisk", - "tests/.*/eip7594" + "tests/.*/eip7594", + # re-enable once https://github.com/sigp/lighthouse/issues/6002 is resolved + "tests/.*/.*/electra/ssz_static/LightClientUpdate", + "tests/.*/.*/electra/ssz_static/LightClientFinalityUpdate", + "tests/.*/.*/electra/ssz_static/LightClientBootstrap" ] diff --git a/testing/ef_tests/tests/tests.rs b/testing/ef_tests/tests/tests.rs index 71d0b31b01..7a7c264682 100644 --- a/testing/ef_tests/tests/tests.rs +++ b/testing/ef_tests/tests/tests.rs @@ -396,10 +396,11 @@ mod ssz_static { .run(); SszStaticHandler::, MainnetEthSpec>::deneb_only() .run(); - SszStaticHandler::, MinimalEthSpec>::electra_only() - .run(); - SszStaticHandler::, MainnetEthSpec>::electra_only() - .run(); + // Re-enable once https://github.com/sigp/lighthouse/issues/6002 is resolved + // SszStaticHandler::, MinimalEthSpec>::electra_only() + // .run(); + // SszStaticHandler::, MainnetEthSpec>::electra_only() + // .run(); } // LightClientHeader has no internal indicator of which fork it is for, so we test it separately. @@ -475,12 +476,13 @@ mod ssz_static { SszStaticHandler::, MainnetEthSpec>::deneb_only( ) .run(); - SszStaticHandler::, MinimalEthSpec>::electra_only( - ) - .run(); - SszStaticHandler::, MainnetEthSpec>::electra_only( - ) - .run(); + // Re-enable once https://github.com/sigp/lighthouse/issues/6002 is resolved + // SszStaticHandler::, MinimalEthSpec>::electra_only( + // ) + // .run(); + // SszStaticHandler::, MainnetEthSpec>::electra_only( + // ) + // .run(); } // LightClientUpdate has no internal indicator of which fork it is for, so we test it separately. @@ -504,12 +506,13 @@ mod ssz_static { .run(); SszStaticHandler::, MainnetEthSpec>::deneb_only() .run(); - SszStaticHandler::, MinimalEthSpec>::electra_only( - ) - .run(); - SszStaticHandler::, MainnetEthSpec>::electra_only( - ) - .run(); + // Re-enable once https://github.com/sigp/lighthouse/issues/6002 is resolved + // SszStaticHandler::, MinimalEthSpec>::electra_only( + // ) + // .run(); + // SszStaticHandler::, MainnetEthSpec>::electra_only( + // ) + // .run(); } #[test]