Skip to content

Commit a3754a0

Browse files
committed
chore(execute): fix execute hive mode
1 parent c3e5260 commit a3754a0

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

packages/testing/src/execution_testing/cli/pytest_commands/plugins/execute/rpc/hive.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,12 @@ def test_suite_description() -> str:
235235
return "Execute EEST tests using hive endpoint."
236236

237237

238+
@pytest.fixture(scope="function")
239+
def test_case_description(request: pytest.FixtureRequest) -> str:
240+
"""The description of the current test case for hive."""
241+
return f"Test: {request.node.name}"
242+
243+
238244
@pytest.fixture(autouse=True, scope="session")
239245
def base_hive_test(
240246
request: pytest.FixtureRequest,

packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ minversion = 7.0
44
python_files = *.py
55
testpaths = tests/
66
# Note: register new markers via src/execution_testing/cli/pytest_commands/plugins/shared/execute_fill.py
7-
addopts =
7+
addopts =
88
-p execution_testing.cli.pytest_commands.plugins.concurrency
99
-p execution_testing.cli.pytest_commands.plugins.execute.sender
1010
-p execution_testing.cli.pytest_commands.plugins.execute.pre_alloc
@@ -19,3 +19,6 @@ addopts =
1919
--tb short
2020
--dist loadscope
2121
--ignore tests/cancun/eip4844_blobs/point_evaluation_vectors/
22+
# TODO: remove after https://github.com/ethereum/execution-specs/issues/1648
23+
--ignore tests/json_infra
24+
--ignore tests/evm_tools

0 commit comments

Comments
 (0)