Skip to content

Commit b8c6320

Browse files
authored
Disable GPG Signing in Test Config (#467)
If a user has GPG signing set to true in their global .gitconfig file, the test suite will fail. This is because the test suit now includes a check of a commit message (the `test_commit_with_no_verify` test in `tests/units/test_lib.rb`) but did not update the test config file. This commit updates the config file to set the `gpgsign` option to false. Signed-off-by: Michael Camilleri <mike@inqk.net>
1 parent 861eb71 commit b8c6320

File tree

1 file changed

+4
-2
lines changed
  • tests/files/working/dot_git

1 file changed

+4
-2
lines changed

tests/files/working/dot_git/config

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[user]
2-
name = Scott Chacon
3-
email = schacon@gmail.com
2+
name = Scott Chacon
3+
email = schacon@gmail.com
4+
[commit]
5+
gpgsign = false
46
[core]
57
repositoryformatversion = 0
68
filemode = true

0 commit comments

Comments
 (0)