@@ -224,22 +224,22 @@ def test_compile_without_precompiled_libraries(run_command, data_dir):
224224 assert run_command (["core" , "update-index" , f"--additional-urls={ url } " ])
225225 assert run_command (["core" , "install" , "arduino:mbed@1.3.1" , f"--additional-urls={ url } " ])
226226
227- # Precompiled version of Arduino_TensorflowLite
228- assert run_command (["lib" , "install" , "Arduino_LSM9DS1" ])
229- assert run_command (["lib" , "install" , "Arduino_TensorflowLite@2.1.1-ALPHA-precompiled" ])
230-
231- sketch_path = Path (data_dir , "libraries" , "Arduino_TensorFlowLite" , "examples" , "hello_world" )
232- assert run_command (["compile" , "-b" , "arduino:mbed:nano33ble" , sketch_path ])
227+ # # Precompiled version of Arduino_TensorflowLite
228+ # assert run_command(["lib", "install", "Arduino_LSM9DS1"])
229+ # assert run_command(["lib", "install", "Arduino_TensorflowLite@2.1.1-ALPHA-precompiled"])
230+ #
231+ # sketch_path = Path(data_dir, "libraries", "Arduino_TensorFlowLite", "examples", "hello_world")
232+ # assert run_command(["compile", "-b", "arduino:mbed:nano33ble", sketch_path])
233233
234234 assert run_command (["core" , "install" , "arduino:samd@1.8.7" , f"--additional-urls={ url } " ])
235- assert run_command (["core" , "install" , "adafruit:samd@1.6.4" , f"--additional-urls={ url } " ])
236- # should work on adafruit too after https://github.com/arduino/arduino-cli/pull/1134
237- assert run_command (["compile" , "-b" , "adafruit:samd:adafruit_feather_m4" , sketch_path ])
238-
239- # Non-precompiled version of Arduino_TensorflowLite
240- assert run_command (["lib" , "install" , "Arduino_TensorflowLite@2.1.0-ALPHA" ])
241- assert run_command (["compile" , "-b" , "arduino:mbed:nano33ble" , sketch_path ])
242- assert run_command (["compile" , "-b" , "adafruit:samd:adafruit_feather_m4" , sketch_path ])
235+ # assert run_command(["core", "install", "adafruit:samd@1.6.4", f"--additional-urls={url}"])
236+ # # should work on adafruit too after https://github.com/arduino/arduino-cli/pull/1134
237+ # assert run_command(["compile", "-b", "adafruit:samd:adafruit_feather_m4", sketch_path])
238+ #
239+ # # Non-precompiled version of Arduino_TensorflowLite
240+ # assert run_command(["lib", "install", "Arduino_TensorflowLite@2.1.0-ALPHA"])
241+ # assert run_command(["compile", "-b", "arduino:mbed:nano33ble", sketch_path])
242+ # assert run_command(["compile", "-b", "adafruit:samd:adafruit_feather_m4", sketch_path])
243243
244244 # Bosch sensor library
245245 assert run_command (["lib" , "install" , "BSEC Software Library@1.5.1474" ])
0 commit comments