From 126e35a91e110aaa9d0581e362b9519575c51f6a Mon Sep 17 00:00:00 2001 From: Florian Schroegendorfer Date: Mon, 3 Jun 2024 21:04:20 +0200 Subject: [PATCH] fixed test repositories --- tests/test_commit.py | 2 ++ tests/test_update.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/test_commit.py b/tests/test_commit.py index 394de06..4a709e0 100644 --- a/tests/test_commit.py +++ b/tests/test_commit.py @@ -26,6 +26,8 @@ class Tests (unittest.TestCase): # initialize git repository os.chdir(data.root) git(["init"]) + git(["config", "user.email", "some@e.mail"]) + git(["config", "user.name", "some body"]) git(["add", "-f", self.current.config]) git(["commit", "-m", "initial"]) # additional files diff --git a/tests/test_update.py b/tests/test_update.py index 4d67612..9c39876 100644 --- a/tests/test_update.py +++ b/tests/test_update.py @@ -42,6 +42,8 @@ class Tests (unittest.TestCase): # initialize git repository os.chdir(data.root) git(["init"]) + git(["config", "user.email", "some@e.mail"]) + git(["config", "user.name", "some body"]) git(["add", "-f", Kernel.current().config]) git(["commit", "-m", "initial"])