File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ def test_add_tensor_u85_INT_2(test_data: input_t2):
209209
210210@common .parametrize ("test_data" , filtered_test_data )
211211@common .SkipIfNoModelConverter
212+ @pytest .mark .xfail (reason = "'Failed to load VKML extensions' error in ci." )
212213def test_add_tensor_vgf_FP (test_data : input_t1 ):
213214 pipeline = VgfPipeline [input_t1 ](
214215 Add (),
@@ -226,6 +227,7 @@ def test_add_tensor_vgf_FP(test_data: input_t1):
226227
227228@common .parametrize ("test_data" , filtered_test_data )
228229@common .SkipIfNoModelConverter
230+ @pytest .mark .xfail (reason = "'Failed to load VKML extensions' error in ci." )
229231def test_add_tensor_vgf_INT (test_data : input_t1 ):
230232 pipeline = VgfPipeline [input_t1 ](
231233 Add (),
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ def run_vkml_emulation_layer(
251251 with open (pte_path , "wb" ) as f :
252252 f .write (executorch_program_manager .buffer )
253253
254- cmd_line = [elf_path , "-model_path" , pte_path ]
254+ cmd_line = [str ( elf_path ) , "-model_path" , pte_path ]
255255 result = _run_cmd (cmd_line )
256256
257257 result_stdout = result .stdout .decode () # noqa: F841
You can’t perform that action at this time.
0 commit comments