From 26941ef95370c10e3f8b2b4e57aeb718b58108f5 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 22 Aug 2026 23:00:03 -0500 Subject: [PATCH] Capture INFO for the depends= visibility note --- tests/unit_tests/test_arduino_library.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit_tests/test_arduino_library.py b/tests/unit_tests/test_arduino_library.py index 9427320634..7614b5bc3d 100644 --- a/tests/unit_tests/test_arduino_library.py +++ b/tests/unit_tests/test_arduino_library.py @@ -840,6 +840,7 @@ def test_bundled_library_properties_depends_warns( wire = framework / "libraries" / "Wire" (wire / "library.properties").write_text("name=Wire\nversion=1.0\ndepends=SPI\n") _add_library("Wire", None) + caplog.set_level("INFO") _resolve(framework) assert "Library Wire declares dependencies via library.properties" in caplog.text