Skip to content

Commit 2af3286

Browse files
Massimiliano Pippimasci
Massimiliano Pippi
authored andcommitted
add debug
1 parent 8f28ee1 commit 2af3286

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_core.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ def test_core_install_esp32(run_command, data_dir):
114114
# create a sketch and compile to double check the core was successfully installed
115115
sketch_path = os.path.join(data_dir, "test_core_install_esp32")
116116
assert run_command("sketch new {}".format(sketch_path))
117-
assert run_command("compile -b esp32:esp32:esp32 {}".format(sketch_path))
117+
out = run_command("compile -b esp32:esp32:esp32 {}".format(sketch_path))
118+
print(out.stderr)
119+
assert out.ok
118120
# prevent regressions for https://github.com/arduino/arduino-cli/issues/163
119121
assert os.path.exists(
120122
os.path.join(

0 commit comments

Comments
 (0)