From 3359e001ff406a8fa98233347c3144584096a926 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 30 Nov 2012 17:09:34 +0000 Subject: Set user.name and use.email in unit tests --- (limited to 'tests/devbot') 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("") -- cgit v0.9.1