From 7dc50f45d3cace41e19adf4887ea85691fbb2ec0 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Sat, 5 Jul 2025 18:15:08 +0800 Subject: [PATCH] zed-editor: skip test test_open_workspace_with_directory on darwin Resolves: https://github.com/NixOS/nixpkgs/issues/422673 --- pkgs/by-name/ze/zed-editor/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/ze/zed-editor/package.nix b/pkgs/by-name/ze/zed-editor/package.nix index d9ea4032a886..6f4e92fdd96c 100644 --- a/pkgs/by-name/ze/zed-editor/package.nix +++ b/pkgs/by-name/ze/zed-editor/package.nix @@ -231,6 +231,10 @@ rustPlatform.buildRustPackage (finalAttrs: { # Flaky: unreliably fails on certain hosts (including Hydra) "--skip=zed::tests::test_window_edit_state_restoring_enabled" ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ + # Flaky: unreliably fails on certain hosts (including Hydra) + "--skip=zed::open_listener::tests::test_open_workspace_with_directory" + ] ++ lib.optionals stdenv.hostPlatform.isLinux [ # Fails on certain hosts (including Hydra) for unclear reason "--skip=test_open_paths_action"