mirror of
https://github.com/frappe/bench.git
synced 2025-01-08 00:04:38 +00:00
test(app_states): Set git committer info in config
This commit is contained in:
parent
137c786f5e
commit
b4a6f7fea8
@ -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
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user