From 4d8dd0afd2d5a35acb5e34c5c7b1674b74173d87 Mon Sep 17 00:00:00 2001 From: happysalada Date: Mon, 10 May 2021 09:45:56 +0900 Subject: [PATCH] nushell: mark tests broken on darwin --- pkgs/shells/nushell/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index 24cb2632447..7d4b04d3c94 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -38,6 +38,11 @@ rustPlatform.buildRustPackage rec { cargoBuildFlags = lib.optional withStableFeatures "--features stable"; + # TODO investigate why tests are broken on darwin + # failures show that tests try to write to paths + # outside of TMPDIR + doCheck = ! stdenv.isDarwin; + checkPhase = '' runHook preCheck echo "Running cargo test"