From 2bd9b70dd6861045438b6705526a664aea34a10d Mon Sep 17 00:00:00 2001 From: danceratopz Date: Wed, 29 Oct 2025 11:34:11 +0100 Subject: [PATCH 1/2] fix(fill,execute): only collect from modules with `test_` prefix --- .../pytest_commands/pytest_ini_files/pytest-execute-hive.ini | 2 +- .../cli/pytest_commands/pytest_ini_files/pytest-execute.ini | 2 +- .../cli/pytest_commands/pytest_ini_files/pytest-fill.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini index 1a3f4cd82ee..274c91cfba8 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini @@ -1,7 +1,7 @@ [pytest] console_output_style = count minversion = 7.0 -python_files = *.py +python_files = test_*.py testpaths = tests/ # Note: register new markers via src/execution_testing/cli/pytest_commands/plugins/shared/execute_fill.py addopts = diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini index b0853f550f3..13987395b31 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini @@ -1,7 +1,7 @@ [pytest] console_output_style = count minversion = 7.0 -python_files = *.py +python_files = test_*.py testpaths = tests/ # Note: register new markers via src/execution_testing/cli/pytest_commands/plugins/shared/execute_fill.py addopts = diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini index 69e82f98c61..8fed94bb30a 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini @@ -1,7 +1,7 @@ [pytest] console_output_style = count minversion = 7.0 -python_files = *.py +python_files = test_*.py testpaths = tests/ # Note: register new markers via src/execution_testing/cli/pytest_commands/plugins/shared/execute_fill.py addopts = From c801d6c3864230201001d46c1a1444a4adf45ad7 Mon Sep 17 00:00:00 2001 From: danceratopz Date: Wed, 29 Oct 2025 11:34:50 +0100 Subject: [PATCH 2/2] chore(fill,execute): don't collect `json_infra` and `evm_tools` --- .../pytest_commands/pytest_ini_files/pytest-execute-hive.ini | 2 ++ .../cli/pytest_commands/pytest_ini_files/pytest-execute.ini | 2 ++ .../cli/pytest_commands/pytest_ini_files/pytest-fill.ini | 2 ++ 3 files changed, 6 insertions(+) diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini index 274c91cfba8..6871ce9538f 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute-hive.ini @@ -19,3 +19,5 @@ addopts = --tb short --dist loadscope --ignore tests/cancun/eip4844_blobs/point_evaluation_vectors/ + --ignore tests/json_infra + --ignore tests/evm_tools \ No newline at end of file diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini index 13987395b31..29a8f527678 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-execute.ini @@ -20,3 +20,5 @@ addopts = --tb short --dist loadscope --ignore tests/cancun/eip4844_blobs/point_evaluation_vectors/ + --ignore tests/json_infra + --ignore tests/evm_tools \ No newline at end of file diff --git a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini index 8fed94bb30a..18f03bb94b7 100644 --- a/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini +++ b/packages/testing/src/execution_testing/cli/pytest_commands/pytest_ini_files/pytest-fill.ini @@ -19,6 +19,8 @@ addopts = -p execution_testing.cli.pytest_commands.plugins.custom_logging.plugin_logging --tb short --ignore tests/cancun/eip4844_blobs/point_evaluation_vectors/ + --ignore tests/json_infra + --ignore tests/evm_tools # these customizations require the pytest-custom-report plugin report_passed_verbose = FILLED report_xpassed_verbose = XFILLED