From f88533ec37fca4cce90fe6ddf50f5b817b089ce8 Mon Sep 17 00:00:00 2001 From: Tae Selene Sandoval Murgan Date: Wed, 13 Jul 2022 08:56:58 +0200 Subject: [PATCH] neovim-remote: disable tests on Darwin The only enabled test started to fail with write errors. Setting HOME=$TMPDIR works, but then it fails the same way than the disabled ones --- pkgs/applications/editors/neovim/neovim-remote.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix index ef3b1590c109..b18811dd0980 100644 --- a/pkgs/applications/editors/neovim/neovim-remote.nix +++ b/pkgs/applications/editors/neovim/neovim-remote.nix @@ -33,6 +33,8 @@ with python3.pkgs; buildPythonApplication rec { "test_escape_double_quotes_in_filenames" ]; + doCheck = !stdenv.isDarwin; + meta = with lib; { description = "A tool that helps controlling nvim processes from a terminal"; homepage = "https://github.com/mhinz/neovim-remote/";