Skip to content

Commit

Permalink
test: Don't time out waiting for gpg user input
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 30, 2019
1 parent b57d07e commit e9411c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/common-tap.js
Expand Up @@ -138,6 +138,9 @@ exports.makeGitRepo = function (params, cb) {
git.chainableExec(['init'], opts),
git.chainableExec(['config', 'user.name', user], opts),
git.chainableExec(['config', 'user.email', email], opts),
// don't time out tests waiting for a gpg passphrase or 2fa
git.chainableExec(['config', 'commit.gpgsign', 'false'], opts),
git.chainableExec(['config', 'tag.forceSignAnnotated', 'false'], opts),
git.chainableExec(['add'].concat(added), opts),
git.chainableExec(['commit', '-m', message], opts)
]
Expand Down

0 comments on commit e9411c6

Please sign in to comment.