@@ -459,7 +459,7 @@ def __init__(self, x=2):
459459 )
460460 ]
461461 )
462- test_results , coverage_data = func_optimizer .run_and_parse_tests (
462+ test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
463463 testing_type = TestingMode .BEHAVIOR ,
464464 test_env = test_env ,
465465 test_files = func_optimizer .test_files ,
@@ -492,7 +492,7 @@ def __init__(self, x=2):
492492 assert test_results [2 ].id .function_getting_tested == "some_function"
493493 assert test_results [2 ].id .iteration_id == "16_0"
494494
495- test_results2 , _ = func_optimizer .run_and_parse_tests (
495+ test_results2 , _ , _ = func_optimizer .run_and_parse_tests (
496496 testing_type = TestingMode .BEHAVIOR ,
497497 test_env = test_env ,
498498 test_files = func_optimizer .test_files ,
@@ -580,7 +580,7 @@ def __init__(self, *args, **kwargs):
580580 )
581581 ]
582582 )
583- test_results , coverage_data = func_optimizer .run_and_parse_tests (
583+ test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
584584 testing_type = TestingMode .BEHAVIOR ,
585585 test_env = test_env ,
586586 test_files = func_optimizer .test_files ,
@@ -614,7 +614,7 @@ def __init__(self, *args, **kwargs):
614614 assert test_results [2 ].id .function_getting_tested == "some_function"
615615 assert test_results [2 ].id .iteration_id == "16_0"
616616
617- results2 , _ = func_optimizer .run_and_parse_tests (
617+ results2 , _ , _ = func_optimizer .run_and_parse_tests (
618618 testing_type = TestingMode .BEHAVIOR ,
619619 test_env = test_env ,
620620 test_files = func_optimizer .test_files ,
@@ -705,7 +705,7 @@ def __init__(self, x=2):
705705 )
706706 ]
707707 )
708- test_results , coverage_data = func_optimizer .run_and_parse_tests (
708+ test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
709709 testing_type = TestingMode .BEHAVIOR ,
710710 test_env = test_env ,
711711 test_files = func_optimizer .test_files ,
@@ -741,7 +741,7 @@ def __init__(self, x=2):
741741 assert test_results [2 ].id .function_getting_tested == "some_function"
742742 assert test_results [2 ].id .iteration_id == "12_2" # Third call
743743
744- test_results2 , _ = func_optimizer .run_and_parse_tests (
744+ test_results2 , _ , _ = func_optimizer .run_and_parse_tests (
745745 testing_type = TestingMode .BEHAVIOR ,
746746 test_env = test_env ,
747747 test_files = func_optimizer .test_files ,
@@ -867,7 +867,7 @@ def another_helper(self):
867867 ]
868868 )
869869
870- test_results , coverage_data = func_optimizer .run_and_parse_tests (
870+ test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
871871 testing_type = TestingMode .BEHAVIOR ,
872872 test_env = test_env ,
873873 test_files = func_optimizer .test_files ,
@@ -888,7 +888,7 @@ def another_helper(self):
888888 assert test_results [3 ].id .function_getting_tested == "AnotherHelperClass.__init__"
889889 assert test_results [3 ].verification_type == VerificationType .INIT_STATE_HELPER
890890
891- results2 , _ = func_optimizer .run_and_parse_tests (
891+ results2 , _ , _ = func_optimizer .run_and_parse_tests (
892892 testing_type = TestingMode .BEHAVIOR ,
893893 test_env = test_env ,
894894 test_files = func_optimizer .test_files ,
@@ -1026,7 +1026,7 @@ def another_helper(self):
10261026 }
10271027 instrument_codeflash_capture (fto , file_path_to_helper_classes , tests_root )
10281028
1029- test_results , coverage_data = func_optimizer .run_and_parse_tests (
1029+ test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
10301030 testing_type = TestingMode .BEHAVIOR ,
10311031 test_env = test_env ,
10321032 test_files = func_optimizer .test_files ,
@@ -1078,7 +1078,7 @@ def target_function(self):
10781078 Path (helper_path_2 ): {"HelperClass2" , "AnotherHelperClass" },
10791079 }
10801080 instrument_codeflash_capture (fto , file_path_to_helper_classes , tests_root )
1081- modified_test_results , coverage_data = func_optimizer .run_and_parse_tests (
1081+ modified_test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
10821082 testing_type = TestingMode .BEHAVIOR ,
10831083 test_env = test_env ,
10841084 test_files = func_optimizer .test_files ,
@@ -1117,7 +1117,7 @@ def target_function(self):
11171117 Path (helper_path_2 ): {"HelperClass2" , "AnotherHelperClass" },
11181118 }
11191119 instrument_codeflash_capture (fto , file_path_to_helper_classes , tests_root )
1120- mutated_test_results , coverage_data = func_optimizer .run_and_parse_tests (
1120+ mutated_test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
11211121 testing_type = TestingMode .BEHAVIOR ,
11221122 test_env = test_env ,
11231123 test_files = func_optimizer .test_files ,
@@ -1155,7 +1155,7 @@ def target_function(self):
11551155 Path (helper_path_2 ): {"HelperClass2" , "AnotherHelperClass" },
11561156 }
11571157 instrument_codeflash_capture (fto , file_path_to_helper_classes , tests_root )
1158- no_helper1_test_results , coverage_data = func_optimizer .run_and_parse_tests (
1158+ no_helper1_test_results , coverage_data , _ = func_optimizer .run_and_parse_tests (
11591159 testing_type = TestingMode .BEHAVIOR ,
11601160 test_env = test_env ,
11611161 test_files = func_optimizer .test_files ,
0 commit comments