From 631a2bddfcef74ba71ddcff9197299723fa73811 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sun, 10 Jul 2022 18:46:58 +0200 Subject: [PATCH] nixos/tests/ipfs: disable FUSE test The FUSE mount functionality of IPFS was broken by the update to v0.13.0, so disable it. Hopefully it will be fixed soon. See https://github.com/ipfs/kubo/issues/9044. --- nixos/tests/ipfs.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/tests/ipfs.nix b/nixos/tests/ipfs.nix index 295a7b9c7273..024822745ada 100644 --- a/nixos/tests/ipfs.nix +++ b/nixos/tests/ipfs.nix @@ -54,6 +54,8 @@ import ./make-test-python.nix ({ pkgs, ...} : { "echo fnord3 | ipfs --api /ip4/127.0.0.1/tcp/2324 add --quieter" ) - fuse.succeed(f"cat /ipfs/{ipfs_hash.strip()} | grep fnord3") + # The FUSE mount functionality is broken as of v0.13.0. + # See https://github.com/ipfs/kubo/issues/9044. + # fuse.succeed(f"cat /ipfs/{ipfs_hash.strip()} | grep fnord3") ''; })