From a8dce36872cb6e02215d0d05117c3ba58790669c Mon Sep 17 00:00:00 2001 From: Jakub Andrysek Date: Fri, 29 Aug 2025 10:45:55 +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")