From 784f099922079c053c762841df25a66a4c51f91c Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Thu, 7 Mar 2019 09:07:36 -0500 Subject: [PATCH] chore: Disable gpg signing in temporary test repositories. My ~/.gitconfig has `commit.gpgSign=true`, earlier I ran the test when my gpg-agent was not active and got prompted for my gpg password. This adds config to the temporary test repositories to avoid automatic signing of commits. --- test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test.js b/test.js index 88126d430..047930010 100644 --- a/test.js +++ b/test.js @@ -94,6 +94,7 @@ function initInTempFolder () { shell.mkdir('tmp') shell.cd('tmp') shell.exec('git init') + shell.exec('git config commit.gpgSign false') commit('root-commit') writePackageJson('1.0.0') }