File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
packages/testing/src/execution_testing/cli/pytest_commands Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff 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" )
239245def base_hive_test (
240246 request : pytest .FixtureRequest ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ minversion = 7.0
44python_files = *.py
55testpaths = 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
You can’t perform that action at this time.
0 commit comments