diff --git a/tests/functional/helpers/repo.ts b/tests/functional/helpers/repo.ts index 7105e62a..54872c73 100644 --- a/tests/functional/helpers/repo.ts +++ b/tests/functional/helpers/repo.ts @@ -218,12 +218,14 @@ export default abstract class Repo { /** * Custom logic with which to further initialize the repo after it is created. - * By default, this configures Git to use an email and name for commits. + * By default, this configures Git to use an email and name for commits, and + * disables GPG signing, which may cause problems in local environments. * Can be overridden in subclasses. */ protected async afterCreate(): Promise { await this.runCommand('git', ['config', 'user.email', 'test@example.com']); await this.runCommand('git', ['config', 'user.name', 'Test User']); + await this.runCommand('git', ['config', 'commit.gpgsign', 'false']); } /**