Skip to content

Commit

Permalink
fix: Disable GPG signing in test repository
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdstaaij committed Aug 16, 2021
1 parent 53a2cfb commit 22efe9f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/lib/test-repo.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ TestRepo.prototype.init = function() {
this._execGit('config', 'core.autocrlf', 'false');
this._execGit('config', 'user.name', 'Mocha');
this._execGit('config', 'user.email', 'test@example.org');
this._execGit('config', 'tag.gpgsign', 'false');
this._execGit('config', 'commit.gpgsign', 'false');
};

TestRepo.prototype.changeData = function() {
Expand Down

0 comments on commit 22efe9f

Please sign in to comment.