From 956827ecda0ff59f815033bc932423a1f3a2055a Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sun, 10 May 2026 13:40:17 +0200 Subject: [PATCH] python3Packages.viser: disable more flaky tests --- pkgs/development/python-modules/viser/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/development/python-modules/viser/default.nix b/pkgs/development/python-modules/viser/default.nix index 8ef63b058a34..617746916f31 100644 --- a/pkgs/development/python-modules/viser/default.nix +++ b/pkgs/development/python-modules/viser/default.nix @@ -150,7 +150,12 @@ buildPythonPackage (finalAttrs: { PLAYWRIGHT_SKIP_VALIDATE_HOST_REQUIREMENTS = true; }; + # flaky tests disabledTests = [ + # AssertionError: Locator expected to be hidden + "test_fuzzy_search_filters_commands[chromium]" + "test_form_dirty_shows_on_sender[chromium]" + # AssertionError: Locator expected to be visible "test_modal_renders_with_content[chromium]" "test_rgb_color_picker_renders[chromium]" @@ -172,11 +177,20 @@ buildPythonPackage (finalAttrs: { "test_text_input_change_callback[chromium]" "test_dropdown_selection_callback[chromium]" "test_server_value_update_round_trip[chromium]" + "test_form_dirty_clears_on_submit_to_peer[chromium]" # playwright._impl._errors.TimeoutError: Locator.wait_for: Timeout 5000ms exceeded. # (same issue with 20s) "test_long_underscore_label_wraps_within_container[chromium]" + # playwright._impl._errors.TargetClosedError: Browser.new_context: Target page, context or browser has been closed + "test_late_joining_client_sees_dirty_form[chromium]" + "test_per_client_form_dirty_is_isolated[chromium]" + "test_late_joining_client_sees_state[chromium]" + "test_scene_node_drag_callbacks[chromium]" + "test_scene_node_drag_filter_rejects_wrong_modifier[chromium]" + "test_form_dirty_syncs_to_peer[chromium]" + # AssertionError: Locator expected to have Value 'initial' "test_gui_state_sync_text[chromium]"