From fed40ef10428bd121ccf45549a5de3130b8eeae4 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 17 Sep 2021 21:06:08 +0300 Subject: [PATCH] Add debug information when a test fails on Win/Py3.8 --- tests/commands/test_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index 08642eaf..40b2b826 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -162,6 +162,7 @@ void unittest_uart_end(){} validate_cliresult(native_result) validate_cliresult(embedded_result) + print("native_result.output", native_result.output) assert all(f in native_result.output for f in ("setUp called", "tearDown called")) assert all( "[FAILED]" not in out for out in (native_result.output, embedded_result.output)