From 2e5986a5e5c897b778b29c5dbe73529d66ca7501 Mon Sep 17 00:00:00 2001 From: Yuriy Taraday Date: Mon, 6 Nov 2023 00:41:36 +0100 Subject: [PATCH] age: skip flaky plugin test See issue in upstream https://github.com/FiloSottile/age/issues/517. age sometimes fails this test, but sometimes it doesn't. Disable this test until the upstream issue is resolved. --- pkgs/tools/security/age/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/security/age/default.nix b/pkgs/tools/security/age/default.nix index 8ad4ff9c904c5..ea8108fde301c 100644 --- a/pkgs/tools/security/age/default.nix +++ b/pkgs/tools/security/age/default.nix @@ -53,6 +53,11 @@ buildGoModule rec { fi ''; + # plugin test is flaky, see https://github.com/FiloSottile/age/issues/517 + checkFlags = [ + "-skip" "TestScript/plugin" + ]; + meta = with lib; { homepage = "https://age-encryption.org/"; description = "Modern encryption tool with small explicit keys";