From e23848b224aa0abe1409d87de85f336c25ec0d30 Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Fri, 15 Apr 2022 13:55:13 +0200 Subject: [PATCH] Update tests to not sign commits made by them (#44) --- cherry_picker/test_cherry_picker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cherry_picker/test_cherry_picker.py b/cherry_picker/test_cherry_picker.py index 7f8a793..e69dd74 100644 --- a/cherry_picker/test_cherry_picker.py +++ b/cherry_picker/test_cherry_picker.py @@ -113,6 +113,7 @@ def tmp_git_repo_dir(tmpdir, cd, git_init, git_commit, git_config): git_init() git_config("--local", "user.name", "Monty Python") git_config("--local", "user.email", "bot@python.org") + git_config("--local", "commit.gpgSign", "false") git_commit("Initial commit", "--allow-empty") yield repo_dir