From f92baa004e1d73b350d93aab053b1f65fb2d9eff Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 19 Aug 2018 09:46:00 +0100 Subject: [PATCH] Disable GPG signing in test repository To avoid being prompted for my key's password whenever I run the tests. --- src/tests/api/internals/masterlist_test.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/api/internals/masterlist_test.h b/src/tests/api/internals/masterlist_test.h index 1c20de9b..1a83c4e2 100644 --- a/src/tests/api/internals/masterlist_test.h +++ b/src/tests/api/internals/masterlist_test.h @@ -133,6 +133,7 @@ TEST_P(MasterlistTest, auto testPath = boost::filesystem::current_path(); boost::filesystem::current_path(masterlistPath.parent_path()); + system("git config commit.gpgsign false"); system("git commit --amend -m \"changing local history\""); boost::filesystem::current_path(testPath);