@@ -27,7 +27,7 @@ def test_compile_without_fqbn(run_command):
27
27
assert result .ok
28
28
29
29
# Install Arduino AVR Boards
30
- result = run_command (
"core install arduino:[email protected] " )
30
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
31
31
assert result .ok
32
32
33
33
# Build sketch without FQBN
@@ -41,7 +41,7 @@ def test_compile_with_simple_sketch(run_command, data_dir, working_dir):
41
41
assert result .ok
42
42
43
43
# Download latest AVR
44
- result = run_command ("core install arduino:avr" )
44
+ result = run_command ("core install --skip-post-install arduino:avr" )
45
45
assert result .ok
46
46
47
47
sketch_name = "CompileIntegrationTest"
@@ -93,7 +93,7 @@ def test_output_flag_default_path(run_command, data_dir, working_dir):
93
93
assert result .ok
94
94
95
95
# Install Arduino AVR Boards
96
- result = run_command (
"core install arduino:[email protected] " )
96
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
97
97
assert result .ok
98
98
99
99
# Create a test sketch
@@ -115,7 +115,7 @@ def test_compile_with_sketch_with_symlink_selfloop(run_command, data_dir):
115
115
assert result .ok
116
116
117
117
# Install Arduino AVR Boards
118
- result = run_command (
"core install arduino:[email protected] " )
118
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
119
119
assert result .ok
120
120
121
121
sketch_name = "CompileIntegrationTestSymlinkSelfLoop"
@@ -168,8 +168,8 @@ def test_compile_and_upload_combo(run_command, data_dir, detected_boards):
168
168
assert result .ok
169
169
170
170
# Install required core(s)
171
- result = run_command (
"core install arduino:[email protected] " )
172
- result = run_command (
"core install arduino:[email protected] " )
171
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
172
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
173
173
assert result .ok
174
174
175
175
# Create a test sketch
@@ -229,7 +229,7 @@ def test_compile_blacklisted_sketchname(run_command, data_dir):
229
229
assert result .ok
230
230
231
231
# Install Arduino AVR Boards
232
- result = run_command (
"core install arduino:[email protected] " )
232
+ result = run_command (
"core install --skip-post-install arduino:[email protected] " )
233
233
assert result .ok
234
234
235
235
sketch_name = "RCS"
@@ -253,11 +253,11 @@ def test_compile_without_precompiled_libraries(run_command, data_dir):
253
253
assert result .ok
254
254
# arduino:mbed 1.1.5 is incompatible with the Arduino_TensorFlowLite library
255
255
# see: https://github.com/arduino/ArduinoCore-nRF528x-mbedos/issues/93
256
- result = run_command (
"core install arduino:[email protected] --additional-urls={}" .
format (
url ))
256
+ result = run_command (
"core install --skip-post-install arduino:[email protected] --additional-urls={}" .
format (
url ))
257
257
assert result .ok
258
- result = run_command (
"core install arduino:[email protected] --additional-urls={}" .
format (
url ))
258
+ result = run_command (
"core install --skip-post-install arduino:[email protected] --additional-urls={}" .
format (
url ))
259
259
assert result .ok
260
- result = run_command (
"core install adafruit:[email protected] --additional-urls={}" .
format (
url ))
260
+ result = run_command (
"core install --skip-post-install adafruit:[email protected] --additional-urls={}" .
format (
url ))
261
261
assert result .ok
262
262
263
263
# Install pre-release version of Arduino_TensorFlowLite (will be officially released
0 commit comments