From 27905e2c3a64fcf10b41c8c76395b4ce134ec5a3 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Tue, 5 Oct 2021 16:44:00 +0200 Subject: [PATCH] tests: disable restarting joinmarket-ob-watcher This removes the repeated failure messages from the test log. --- test/tests.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/tests.nix b/test/tests.nix index f68374e..b63973a 100644 --- a/test/tests.nix +++ b/test/tests.nix @@ -98,6 +98,10 @@ let txfee = 200; }; + # Disable restarting joinmarket-ob-watcher because it always fails + # on non-synced mainnet nodes + systemd.services.joinmarket-ob-watcher.serviceConfig.Restart = mkForce "no"; + tests.nodeinfo = config.nix-bitcoin.nodeinfo.enable; tests.backups = cfg.backups.enable;