File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -107,16 +107,14 @@ def test_core_updateindex_invalid_url(run_command):
107
107
108
108
def test_core_install_esp32 (run_command , data_dir ):
109
109
# update index
110
- url = "https://raw.githubusercontent .com/espressif/arduino-esp32/gh-pages/package_esp32_index .json"
110
+ url = "https://arduino.esp8266 .com/stable/package_esp8266com_index .json"
111
111
assert run_command ("core update-index --additional-urls={}" .format (url ))
112
112
# install 3rd-party core
113
113
assert run_command ("core install esp32:esp32 --additional-urls={}" .format (url ))
114
114
# create a sketch and compile to double check the core was successfully installed
115
115
sketch_path = os .path .join (data_dir , "test_core_install_esp32" )
116
116
assert run_command ("sketch new {}" .format (sketch_path ))
117
- out = run_command ("compile -b esp32:esp32:esp32 {}" .format (sketch_path ))
118
- print (out .stderr )
119
- assert out .ok
117
+ assert run_command ("compile -b esp32:esp32:esp32 {}" .format (sketch_path ))
120
118
# prevent regressions for https://github.com/arduino/arduino-cli/issues/163
121
119
assert os .path .exists (
122
120
os .path .join (
You can’t perform that action at this time.
0 commit comments