From d56f3107ea6ef4ab36d8440b18cf32aa8c16f84a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 2 Feb 2026 14:42:24 +0000 Subject: [PATCH] nushell: skip failing test on darwin --- pkgs/by-name/nu/nushell/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/nu/nushell/package.nix b/pkgs/by-name/nu/nushell/package.nix index 43a1b5477937..044715171857 100644 --- a/pkgs/by-name/nu/nushell/package.nix +++ b/pkgs/by-name/nu/nushell/package.nix @@ -74,6 +74,9 @@ rustPlatform.buildRustPackage (finalAttrs: { "plugins::stress_internals::test_exit_early_local_socket" "plugins::stress_internals::test_failing_local_socket_fallback" "plugins::stress_internals::test_local_socket" + + # Error: × I/O error: Operation not permitted (os error 1) + "shell::environment::env::path_is_a_list_in_repl" ]; skippedTestsStr = lib.concatStringsSep " " (lib.map (testId: "--skip=${testId}") skippedTests);