File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -282,22 +282,25 @@ def test_compile_without_precompiled_libraries(run_command, data_dir):
282282 result = run_command ("core update-index --additional-urls={}" .format (url ))
283283 assert result .ok
284284
285- # Try build problematic sketch
286- result = run_command ("core install arduino:mbed --additional-urls={}" .format (url ))
287- assert result .ok
288-
289285 # Install pre-release version of Arduino_TensorFlowLite (will be officially released
290286 # via lib manager after https://github.com/arduino/arduino-builder/issues/353 is in)
291287 import zipfile
292288 with zipfile .ZipFile ("test/testdata/Arduino_TensorFlowLite.zip" , 'r' ) as zip_ref :
293289 zip_ref .extractall ("{}/libraries/" .format (data_dir ))
294290 #result = run_command("lib install Arduino_TensorflowLite@1.15.0-ALPHA-precompiled")
295291 #assert result.ok
296-
297292 result = run_command ("lib install Arduino_LSM9DS1@1.1.0" )
298293 assert result .ok
294+ result = run_command ("lib install \" BSEC Software Library@1.5.1474\" " )
295+ assert result .ok
296+
297+ # Try build problematic sketch
298+ result = run_command ("core install arduino:mbed --additional-urls={}" .format (url ))
299+ assert result .ok
299300 result = run_command ("compile -b arduino:mbed:nano33ble {}/libraries/Arduino_TensorFlowLite/examples/magic_wand/ -v" .format (data_dir ))
300301 assert result .ok
302+ result = run_command ("compile -b arduino:mbed:nano33ble {}/libraries/BSEC_Software_Library/examples/basic/ -v" .format (data_dir ))
303+ assert result .ok
301304
302305 result = run_command ("core install adafruit:samd --additional-urls={}" .format (url ))
303306 assert result .ok
You can’t perform that action at this time.
0 commit comments