1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From 62c4c9cd161e86cca9d27c638424b5b7a0f555b7 Mon Sep 17 00:00:00 2001
From: Andrew Ruthven <andrew@etc.gen.nz>
Date: Wed, 16 Aug 2023 23:47:30 +1200
Subject: Don't run dirmngr during tests runs
This process is left running after the tests finish and prevents this
package from passing the reproducible builds.
Patch-Name: disable_dirmngr_in_tests.diff
Forwarded: not-needed
---
t/mail/gnupg-reverification.t | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/mail/gnupg-reverification.t b/t/mail/gnupg-reverification.t
index ec3b5a01..20165cc8 100644
--- a/t/mail/gnupg-reverification.t
+++ b/t/mail/gnupg-reverification.t
@@ -1,7 +1,7 @@
use strict;
use warnings;
-use RT::Test::Crypt GnuPG => 1, tests => undef, gnupg_options => { passphrase => 'rt-test' };
+use RT::Test::Crypt GnuPG => 1, tests => undef, gnupg_options => { passphrase => 'rt-test', 'disable-dirmngr' => undef };
diag "load Everyone group";
my $everyone;
|