File tree 1 file changed +8
-5
lines changed
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):
282
282
result = run_command ("core update-index --additional-urls={}" .format (url ))
283
283
assert result .ok
284
284
285
- # Try build problematic sketch
286
- result = run_command ("core install arduino:mbed --additional-urls={}" .format (url ))
287
- assert result .ok
288
-
289
285
# Install pre-release version of Arduino_TensorFlowLite (will be officially released
290
286
# via lib manager after https://github.com/arduino/arduino-builder/issues/353 is in)
291
287
import zipfile
292
288
with zipfile .ZipFile ("test/testdata/Arduino_TensorFlowLite.zip" , 'r' ) as zip_ref :
293
289
zip_ref .extractall ("{}/libraries/" .format (data_dir ))
294
290
#result = run_command("lib install Arduino_TensorflowLite@1.15.0-ALPHA-precompiled")
295
291
#assert result.ok
296
-
297
292
result = run_command ("lib install Arduino_LSM9DS1@1.1.0" )
298
293
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
299
300
result = run_command ("compile -b arduino:mbed:nano33ble {}/libraries/Arduino_TensorFlowLite/examples/magic_wand/ -v" .format (data_dir ))
300
301
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
301
304
302
305
result = run_command ("core install adafruit:samd --additional-urls={}" .format (url ))
303
306
assert result .ok
You can’t perform that action at this time.
0 commit comments