diff --git a/tests.py b/tests.py
index 7a04789d2cc427814f77840104ce9aecae9d77fd..259151585b83f3d407d66455d4d7b520e4a74aa2 100644
--- a/tests.py
+++ b/tests.py
@@ -34,8 +34,13 @@ def create_mock_git_repository(target_directory, create_directory=True):
         subprocess.run("echo 'fake content' > readme.txt", shell=True, check=True)
         subprocess.run("git add readme.txt", shell=True, check=True)
         subprocess.run("pwd", shell=True)
+
+        # if email and username are not available (such as on naked test container),
+        # git may complain. We set a temporary user for this one commit to work around
+        # that.
+        user_details = "-c user.name='Tes Ta' -c user.email='tester@some-ci.org'"
         subprocess.run(
-            'git commit -m "first commit" readme.txt', shell=True, check=True
+            f'git {user_details} commit -m "first commit" readme.txt', shell=True, check=True
         )