nixos/tests/kubo: disable broken FUSE test

The FUSE functionality is completely broken in Kubo v0.24.0.
See https://github.com/ipfs/kubo/issues/10242.
This commit is contained in:
Luflosi 2023-12-04 09:51:08 +01:00
parent 58e9a35d19
commit 82c73a8d72
No known key found for this signature in database
GPG Key ID: 4E41E29EDCC345D0

View File

@ -1,5 +1,7 @@
{ recurseIntoAttrs, runTest }:
recurseIntoAttrs {
kubo = runTest ./kubo.nix;
kubo-fuse = runTest ./kubo-fuse.nix;
# The FUSE functionality is completely broken since Kubo v0.24.0
# See https://github.com/ipfs/kubo/issues/10242
# kubo-fuse = runTest ./kubo-fuse.nix;
}