Merge pull request #885 from s0undt3ch/hotfix/no-gpg-sign

Don't fail if GPG signing is configured by default
This commit is contained in:
Anthony Sottile
2018-12-14 16:25:50 -05:00
committed by GitHub

View File

@@ -48,7 +48,7 @@ def make_repo(tempdir_factory, repo_source):
path = git_dir(tempdir_factory)
copy_tree_to_path(get_resource_path(repo_source), path)
cmd_output('git', 'add', '.', cwd=path)
cmd_output('git', 'commit', '-m', 'Add hooks', cwd=path)
cmd_output('git', 'commit', '--no-gpg-sign', '-m', 'Add hooks', cwd=path)
return path
@@ -64,7 +64,9 @@ def modify_manifest(path):
with io.open(manifest_path, 'w') as manifest_file:
manifest_file.write(ordered_dump(manifest, **C.YAML_DUMP_KWARGS))
cmd_output(
'git', 'commit', '-am', 'update {}'.format(C.MANIFEST_FILE), cwd=path,
'git', 'commit', '--no-gpg-sign', '-am',
'update {}'.format(C.MANIFEST_FILE),
cwd=path,
)
@@ -80,7 +82,9 @@ def modify_config(path='.', commit=True):
with io.open(config_path, 'w', encoding='UTF-8') as config_file:
config_file.write(ordered_dump(config, **C.YAML_DUMP_KWARGS))
if commit:
cmd_output('git', 'commit', '-am', 'update config', cwd=path)
cmd_output(
'git', 'commit', '--no-gpg-sign', '-am', 'update config', cwd=path,
)
def config_with_local_hooks():
@@ -136,13 +140,19 @@ def write_config(directory, config, config_file=C.CONFIG_FILE):
def add_config_to_repo(git_path, config, config_file=C.CONFIG_FILE):
write_config(git_path, config, config_file=config_file)
cmd_output('git', 'add', config_file, cwd=git_path)
cmd_output('git', 'commit', '-m', 'Add hooks config', cwd=git_path)
cmd_output(
'git', 'commit', '--no-gpg-sign', '-m', 'Add hooks config',
cwd=git_path,
)
return git_path
def remove_config_from_repo(git_path, config_file=C.CONFIG_FILE):
cmd_output('git', 'rm', config_file, cwd=git_path)
cmd_output('git', 'commit', '-m', 'Remove hooks config', cwd=git_path)
cmd_output(
'git', 'commit', '--no-gpg-sign', '-m', 'Remove hooks config',
cwd=git_path,
)
return git_path