From 72b207aab6a100ba307e07e1cbff1a38743c99a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sun, 14 Jun 2026 23:24:15 +0200 Subject: [PATCH] feat(gui): pytest sub-items use the pytest icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "pytest step" children now show the pytest logo (pytest.png), matching the parent "pytest" item, instead of the generic document icon. Icon already embedded in the compiled resources — no rcc regen needed. Co-Authored-By: Claude Opus 4.8 --- src/testium/main_win/test_tree_items/test_tree_item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testium/main_win/test_tree_items/test_tree_item.py b/src/testium/main_win/test_tree_items/test_tree_item.py index 7126c09..0469bd4 100644 --- a/src/testium/main_win/test_tree_items/test_tree_item.py +++ b/src/testium/main_win/test_tree_items/test_tree_item.py @@ -13,7 +13,7 @@ _ITEM_CONFIG = { "unittest": {"icon": "folder.png", "icon_on": "folder-open.png", "expanded": True, "no_breakpoint": True}, "unittest step": {"icon": "document.png", "no_breakpoint": True}, "pytest": {"icon": "pytest.png", "expanded": True, "no_breakpoint": True}, - "pytest step": {"icon": "document.png", "no_breakpoint": True}, + "pytest step": {"icon": "pytest.png", "no_breakpoint": True}, "Console": {"icon": "terminal.png", "unfoldable": False}, "Console action": {"icon": "terminal.png"}, "Cycle": {"icon": "cycle.png", "expanded": True},