@@ -27,7 +27,7 @@ def test_compile_without_fqbn(run_command):
2727 assert result .ok
2828
2929 # Install Arduino AVR Boards
30- result = run_command ("core install arduino:avr@1.8.3" )
30+ result = run_command ("core install --skip-post-install arduino:avr@1.8.3" )
3131 assert result .ok
3232
3333 # Build sketch without FQBN
@@ -41,7 +41,7 @@ def test_compile_with_simple_sketch(run_command, data_dir, working_dir):
4141 assert result .ok
4242
4343 # Download latest AVR
44- result = run_command ("core install arduino:avr" )
44+ result = run_command ("core install --skip-post-install arduino:avr" )
4545 assert result .ok
4646
4747 sketch_name = "CompileIntegrationTest"
@@ -93,7 +93,7 @@ def test_output_flag_default_path(run_command, data_dir, working_dir):
9393 assert result .ok
9494
9595 # Install Arduino AVR Boards
96- result = run_command ("core install arduino:avr@1.8.3" )
96+ result = run_command ("core install --skip-post-install arduino:avr@1.8.3" )
9797 assert result .ok
9898
9999 # Create a test sketch
@@ -115,7 +115,7 @@ def test_compile_with_sketch_with_symlink_selfloop(run_command, data_dir):
115115 assert result .ok
116116
117117 # Install Arduino AVR Boards
118- result = run_command ("core install arduino:avr@1.8.3" )
118+ result = run_command ("core install --skip-post-install arduino:avr@1.8.3" )
119119 assert result .ok
120120
121121 sketch_name = "CompileIntegrationTestSymlinkSelfLoop"
@@ -168,8 +168,8 @@ def test_compile_and_upload_combo(run_command, data_dir, detected_boards):
168168 assert result .ok
169169
170170 # Install required core(s)
171- result = run_command ("core install arduino:avr@1.8.3" )
172- result = run_command ("core install arduino:samd@1.8.7" )
171+ result = run_command ("core install --skip-post-install arduino:avr@1.8.3" )
172+ result = run_command ("core install --skip-post-install arduino:samd@1.8.7" )
173173 assert result .ok
174174
175175 # Create a test sketch
@@ -229,7 +229,7 @@ def test_compile_blacklisted_sketchname(run_command, data_dir):
229229 assert result .ok
230230
231231 # Install Arduino AVR Boards
232- result = run_command ("core install arduino:avr@1.8.3" )
232+ result = run_command ("core install --skip-post-install arduino:avr@1.8.3" )
233233 assert result .ok
234234
235235 sketch_name = "RCS"
@@ -253,11 +253,11 @@ def test_compile_without_precompiled_libraries(run_command, data_dir):
253253 assert result .ok
254254 # arduino:mbed 1.1.5 is incompatible with the Arduino_TensorFlowLite library
255255 # see: https://github.com/arduino/ArduinoCore-nRF528x-mbedos/issues/93
256- result = run_command ("core install arduino:mbed@1.1.4 --additional-urls={}" .format (url ))
256+ result = run_command ("core install --skip-post-install arduino:mbed@1.1.4 --additional-urls={}" .format (url ))
257257 assert result .ok
258- result = run_command ("core install arduino:samd@1.8.7 --additional-urls={}" .format (url ))
258+ result = run_command ("core install --skip-post-install arduino:samd@1.8.7 --additional-urls={}" .format (url ))
259259 assert result .ok
260- result = run_command ("core install adafruit:samd@1.6.0 --additional-urls={}" .format (url ))
260+ result = run_command ("core install --skip-post-install adafruit:samd@1.6.0 --additional-urls={}" .format (url ))
261261 assert result .ok
262262
263263 # Install pre-release version of Arduino_TensorFlowLite (will be officially released
0 commit comments