From 3e61c6ecc5dbae2215ca5667a40570e04f02b3fd Mon Sep 17 00:00:00 2001 From: Jakub Andrysek Date: Thu, 28 Aug 2025 15:43:43 +0200 Subject: [PATCH] feat(tests): Enhance hello_world test with logging functionality --- tests/validation/hello_world/test_hello_world.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/validation/hello_world/test_hello_world.py b/tests/validation/hello_world/test_hello_world.py index 725e9a713c5..628c152ac16 100644 --- a/tests/validation/hello_world/test_hello_world.py +++ b/tests/validation/hello_world/test_hello_world.py @@ -1,2 +1,7 @@ +import logging + + def test_hello_world(dut): + LOGGER = logging.getLogger(__name__) dut.expect_exact("Hello Arduino!") + LOGGER.info("Hello Arduino! message was sent")