@@ -129,7 +129,7 @@ def functionA():
129
129
tests_root = "tests" , project_root_path = "." , test_framework = "pytest" , tests_project_rootdir = Path ()
130
130
)
131
131
path_obj_name = Path (f .name )
132
- functions , functions_count = get_functions_to_optimize (
132
+ functions , functions_count , _ = get_functions_to_optimize (
133
133
optimize_all = None ,
134
134
replay_test = None ,
135
135
file = path_obj_name ,
@@ -145,7 +145,7 @@ def functionA():
145
145
assert functions [file ][0 ].function_name == "functionA"
146
146
assert functions [file ][0 ].top_level_parent_name == "A"
147
147
148
- functions , functions_count = get_functions_to_optimize (
148
+ functions , functions_count , _ = get_functions_to_optimize (
149
149
optimize_all = None ,
150
150
replay_test = None ,
151
151
file = path_obj_name ,
@@ -161,7 +161,7 @@ def functionA():
161
161
assert functions [file ][0 ].function_name == "functionA"
162
162
assert functions [file ][0 ].top_level_parent_name == "X"
163
163
164
- functions , functions_count = get_functions_to_optimize (
164
+ functions , functions_count , _ = get_functions_to_optimize (
165
165
optimize_all = None ,
166
166
replay_test = None ,
167
167
file = path_obj_name ,
@@ -229,7 +229,7 @@ def traverse(node_id):
229
229
tests_root = "tests" , project_root_path = "." , test_framework = "pytest" , tests_project_rootdir = Path ()
230
230
)
231
231
path_obj_name = Path (f .name )
232
- functions , functions_count = get_functions_to_optimize (
232
+ functions , functions_count , _ = get_functions_to_optimize (
233
233
optimize_all = None ,
234
234
replay_test = None ,
235
235
file = path_obj_name ,
@@ -258,7 +258,7 @@ def inner_function():
258
258
tests_root = "tests" , project_root_path = "." , test_framework = "pytest" , tests_project_rootdir = Path ()
259
259
)
260
260
path_obj_name = Path (f .name )
261
- functions , functions_count = get_functions_to_optimize (
261
+ functions , functions_count , _ = get_functions_to_optimize (
262
262
optimize_all = None ,
263
263
replay_test = None ,
264
264
file = path_obj_name ,
@@ -289,7 +289,7 @@ def another_inner_function():
289
289
tests_root = "tests" , project_root_path = "." , test_framework = "pytest" , tests_project_rootdir = Path ()
290
290
)
291
291
path_obj_name = Path (f .name )
292
- functions , functions_count = get_functions_to_optimize (
292
+ functions , functions_count , _ = get_functions_to_optimize (
293
293
optimize_all = None ,
294
294
replay_test = None ,
295
295
file = path_obj_name ,
0 commit comments