about summary refs log tree commit diff
path: root/pkgs/development/python-modules/llfuse
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-03-27 03:18:29 +0900
committerGitHub <noreply@github.com>2021-03-26 19:18:29 +0100
commit24ec2cd1ed0c44357cfb45b8a96a67580a9a8c6e (patch)
treecc4626b61494eeaea744555af4f0bd79e734007c /pkgs/development/python-modules/llfuse
parent86ab658c5726d4f718d884c010f86a507f2d7a28 (diff)
llfuse: disable tests on Darwin (#117695)
Fixes #117665. The tests require macFUSE[1], an external dependency to
be installed.

[1]: https://osxfuse.github.io/
Diffstat (limited to 'pkgs/development/python-modules/llfuse')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 16adf1beabd4d..44aa9136b07cb 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -35,12 +35,12 @@ buildPythonPackage rec {
     ${python.interpreter} setup.py build_cython
   '';
 
+  # On Darwin, the test requires macFUSE to be installed outside of Nix.
+  doCheck = !stdenv.isDarwin;
   checkInputs = [ pytestCheckHook which ];
 
   disabledTests = [
     "test_listdir" # accesses /usr/bin
-  ] ++ lib.optionals stdenv.isDarwin [
-    "uses_fuse"
   ];
 
   meta = with lib; {