@@ -224,22 +224,22 @@ def test_compile_without_precompiled_libraries(run_command, data_dir):
224
224
assert run_command (["core" , "update-index" , f"--additional-urls={ url } " ])
225
225
assert run_command ([
"core" ,
"install" ,
"arduino:[email protected] " ,
f"--additional-urls={ url } " ])
226
226
227
- # Precompiled version of Arduino_TensorflowLite
228
- assert run_command (["lib" , "install" , "Arduino_LSM9DS1" ])
229
- assert run_command ([
"lib" ,
"install" ,
"[email protected] " ])
230
-
231
- sketch_path = Path (data_dir , "libraries" , "Arduino_TensorFlowLite" , "examples" , "hello_world" )
232
- assert run_command (["compile" , "-b" , "arduino:mbed:nano33ble" , sketch_path ])
233
-
234
- assert run_command ([
"core" ,
"install" ,
"arduino:[email protected] " ,
f"--additional-urls={ url } " ])
235
- assert run_command ([
"core" ,
"install" ,
"adafruit:[email protected] " ,
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" ,
"[email protected] " ])
241
- assert run_command (["compile" , "-b" , "arduino:mbed:nano33ble" , sketch_path ])
242
- assert run_command (["compile" , "-b" , "adafruit:samd:adafruit_feather_m4" , sketch_path ])
227
+ # # Precompiled version of Arduino_TensorflowLite
228
+ # assert run_command(["lib", "install", "Arduino_LSM9DS1"])
229
+ # assert run_command(["lib", "install", "[email protected] "])
230
+ #
231
+ # sketch_path = Path(data_dir, "libraries", "Arduino_TensorFlowLite", "examples", "hello_world")
232
+ # assert run_command(["compile", "-b", "arduino:mbed:nano33ble", sketch_path])
233
+ #
234
+ # assert run_command(["core", "install", "arduino:[email protected] ", f"--additional-urls={url}"])
235
+ # assert run_command(["core", "install", "adafruit:[email protected] ", 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", "[email protected] "])
241
+ # assert run_command(["compile", "-b", "arduino:mbed:nano33ble", sketch_path])
242
+ # assert run_command(["compile", "-b", "adafruit:samd:adafruit_feather_m4", sketch_path])
243
243
244
244
# Bosch sensor library
245
245
assert run_command ([
"lib" ,
"install" ,
"BSEC Software [email protected] " ])
0 commit comments