Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/devbot/test_git.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/devbot/test_git.py b/tests/devbot/test_git.py
index e78626a..48456bc 100644
--- a/tests/devbot/test_git.py
+++ b/tests/devbot/test_git.py
@@ -12,6 +12,9 @@ class TestGit(unittest.TestCase):
subprocess.check_call(["git", "init"])
+ subprocess.check_call(["git", "config", "user.name", "Test Test"])
+ subprocess.check_call(["git", "config", "user.email", "test@test.org"])
+
with open("README", "w") as f:
f.write("")