From 974f25997d68d13ff1063026f9e5c4c8dd4d49f3 Mon Sep 17 00:00:00 2001 From: wyzula-jan Date: Mon, 16 Mar 2026 14:17:48 +0100 Subject: [PATCH] fix(e2e): bec shell excluded from e2e testing --- tests/end-2-end/test_rpc_widgets_e2e.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/end-2-end/test_rpc_widgets_e2e.py b/tests/end-2-end/test_rpc_widgets_e2e.py index 9ba15e16..31b818b4 100644 --- a/tests/end-2-end/test_rpc_widgets_e2e.py +++ b/tests/end-2-end/test_rpc_widgets_e2e.py @@ -89,8 +89,8 @@ def test_available_widgets(qtbot, connected_client_gui_obj): # Skip private attributes if object_name.startswith("_"): continue - # Skip VSCode widget as Code server is not available in the Docker image - if object_name == "VSCodeEditor": + # Skip BECShell as ttyd is not installed + if object_name == "BECShell": continue # Skip WebConsole as ttyd is not installed