We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f28ee1 commit 2af3286Copy full SHA for 2af3286
test/test_core.py
@@ -114,7 +114,9 @@ def test_core_install_esp32(run_command, data_dir):
114
# create a sketch and compile to double check the core was successfully installed
115
sketch_path = os.path.join(data_dir, "test_core_install_esp32")
116
assert run_command("sketch new {}".format(sketch_path))
117
- assert run_command("compile -b esp32:esp32:esp32 {}".format(sketch_path))
+ out = run_command("compile -b esp32:esp32:esp32 {}".format(sketch_path))
118
+ print(out.stderr)
119
+ assert out.ok
120
# prevent regressions for https://github.com/arduino/arduino-cli/issues/163
121
assert os.path.exists(
122
os.path.join(
0 commit comments