Skip to content

Disable GPG Signing in Test Config #467

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Disable GPG Signing in Test Config
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>
  • Loading branch information
pyrmont committed Apr 14, 2020
commit 0c9cbcd9a8b352e44c4bf84bb483c6a19ee21233
6 changes: 4 additions & 2 deletions tests/files/working/dot_git/config
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[user]
name = Scott Chacon
email = schacon@gmail.com
name = Scott Chacon
email = schacon@gmail.com
[commit]
gpgsign = false
[core]
repositoryformatversion = 0
filemode = true
Expand Down