From 49dcaa5df4bba671802ea10cae9a54992cafc57a Mon Sep 17 00:00:00 2001 From: sonhv0212 Date: Thu, 22 May 2025 17:02:17 +0700 Subject: [PATCH] fix(execute): execute mode skips tests that contain blob tx --- src/pytest_plugins/execute/execute.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pytest_plugins/execute/execute.py b/src/pytest_plugins/execute/execute.py index 20df345820e..edc1ee0dd08 100644 --- a/src/pytest_plugins/execute/execute.py +++ b/src/pytest_plugins/execute/execute.py @@ -395,3 +395,9 @@ def pytest_collection_modifyitems(config: pytest.Config, items: List[pytest.Item ) elif "test_many_delegations" in item.name: item.add_marker(pytest.mark.skip(reason="This test needs high gas")) + + # Skip tests that execute mode not supported + if "type_3" in item.name: + item.add_marker( + pytest.mark.skip(reason="Transaction type 3 is not supported in execute mode") + )