Skip to content

Commit

Permalink
now it should work in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemumma committed Jun 18, 2024
1 parent 3651fae commit c7a5dd6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/migrations/test_autogeneration.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ def test_basic() -> None:
os.makedirs(dir)
try:
subprocess.run(["git", "init"], cwd=dir, check=True)
subprocess.run(
["git", "config", "user.email", "[email protected]"], cwd=dir, check=True
)
subprocess.run(["git", "config", "user.name", "Jane Doe"], cwd=dir, check=True)
# make a fake storage
with open(os.path.join(dir, fname), "w") as f:
f.write("hello world\n")
Expand Down

0 comments on commit c7a5dd6

Please sign in to comment.