Skip to content

Commit 054a900

Browse files
marioevzdanceratopz
authored andcommitted
fix(testing): Fill always count opcodes
1 parent ae622e6 commit 054a900

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

  • packages/testing/src/execution_testing/cli/pytest_commands/plugins/filler

packages/testing/src/execution_testing/cli/pytest_commands/plugins/filler/filler.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,15 +1077,8 @@ def t8n(
10771077
session_t8n.reset_traces()
10781078
session_t8n.call_counter = 0
10791079
session_t8n.debug_dump_dir = dump_dir_parameter_level
1080-
# Configure the transition tool to count opcodes only when required.
1081-
if (
1082-
request.node.get_closest_marker("benchmark")
1083-
or request.node.get_closest_marker("stateful")
1084-
or request.node.get_closest_marker("repricing")
1085-
):
1086-
session_t8n.reset_opcode_count()
1087-
else:
1088-
session_t8n.remove_opcode_count()
1080+
# TODO: Configure the transition tool to count opcodes only when required.
1081+
session_t8n.reset_opcode_count()
10891082
yield session_t8n
10901083
if session_t8n.output_cache is not None:
10911084
transition_tool_cache_stats.subkey_test_hits += (

0 commit comments

Comments
 (0)