llfuse: disable tests on Darwin (#117695)
Fixes #117665. The tests require macFUSE[1], an external dependency to be installed. [1]: https://osxfuse.github.io/
This commit is contained in:
parent
86ab658c57
commit
24ec2cd1ed
@ -35,12 +35,12 @@ buildPythonPackage rec {
|
|||||||
${python.interpreter} setup.py build_cython
|
${python.interpreter} setup.py build_cython
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# On Darwin, the test requires macFUSE to be installed outside of Nix.
|
||||||
|
doCheck = !stdenv.isDarwin;
|
||||||
checkInputs = [ pytestCheckHook which ];
|
checkInputs = [ pytestCheckHook which ];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"test_listdir" # accesses /usr/bin
|
"test_listdir" # accesses /usr/bin
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
|
||||||
"uses_fuse"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user