summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-09-22 00:36:56 +0000
committerGerrit Code Review <review@openstack.org>2014-09-22 00:36:56 +0000
commit1e7d8951d278de667bc01c6f11b6e055dcdf9b69 (patch)
treed495bf801d10f5a1649b9c33910ea6683c3995da
parent7613992db7bc509ed154a83a8e2469561f4ab9db (diff)
parent9082720fc47c74fc22ea0ea80486f35157e619b7 (diff)
downloadpbr-1e7d8951d278de667bc01c6f11b6e055dcdf9b69.tar.gz
Merge "Add user.name to git config in tests"
-rw-r--r--pbr/tests/test_packaging.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pbr/tests/test_packaging.py b/pbr/tests/test_packaging.py
index 677474c..a067945 100644
--- a/pbr/tests/test_packaging.py
+++ b/pbr/tests/test_packaging.py
@@ -69,6 +69,9 @@ class TestRepo(fixtures.Fixture):
['git', 'config', '--global', 'user.email', 'example@example.com'],
self._basedir)
base._run_cmd(
+ ['git', 'config', '--global', 'user.name', 'OpenStack Developer'],
+ self._basedir)
+ base._run_cmd(
['git', 'config', '--global', 'user.signingkey',
'example@example.com'], self._basedir)
base._run_cmd(['git', 'add', '.'], self._basedir)