diff --git a/bench/tests/test_utils.py b/bench/tests/test_utils.py index db830e1b..e0137dca 100644 --- a/bench/tests/test_utils.py +++ b/bench/tests/test_utils.py @@ -75,6 +75,18 @@ class TestUtils(unittest.TestCase): f.write("__version__ = '11.0'") subprocess.run(["git", "add", "."], cwd=frappe_path, capture_output=True, check=True) + subprocess.run( + ["git", "config", "user.email", "bench-test_app_states@gha.com"], + cwd=frappe_path, + capture_output=True, + check=True, + ) + subprocess.run( + ["git", "config", "user.name", "App States Test"], + cwd=frappe_path, + capture_output=True, + check=True, + ) subprocess.run( ["git", "commit", "-m", "temp"], cwd=frappe_path, capture_output=True, check=True )