Skip to content

Commit 8171fa1

Browse files
committed
[MGPG-79] Fix integration test execution in environments without tty
1 parent a272e7d commit 8171fa1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/java/org/apache/maven/plugins/gpg/it/GpgSignAttachedMojoIT.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ public void testInteractiveWithoutPassphrase() throws Exception
6565
// then
6666
assertThat( "Maven execution must fail", invocationResult.getExitCode(), not( 0 ) );
6767
assertThat(
68-
"Maven execution failed because pinentry input prompt timed out",
68+
"Maven execution failed because no pinentry program is available",
6969
buildLogContent,
70-
containsString( "[GNUPG:] FAILURE sign 83886142" )
70+
containsString( "[GNUPG:] FAILURE sign 67108949" )
7171
);
7272
}
7373

src/test/resources/gnupg/gpg-agent.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
ignore-cache-for-signing
33

44
# Prevent pinentry input prompts from blocking integration tests
5-
pinentry-timeout 1
5+
pinentry-program pinentry-non-existent

0 commit comments

Comments
 (0)