Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
corentincarton committed Feb 15, 2024
1 parent f765331 commit 70a32f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def test_setup_remote():
assert os.path.exists(os.path.join(remote_path, "dummy.txt"))

repo = git.Repo(remote_path)
commit_history = repo.iter_commits()
print(repo)
print(repo.head)
print(repo.heads)
Expand All @@ -119,11 +118,13 @@ def test_setup_remote():
print(repo.untracked_files)
print(repo.working_dir)
print(repo.working_tree_dir)
commit_history = repo.iter_commits()
for commit in commit_history:
print(commit.message)
assert "first commit" in commit.message
assert False


def test_setup_remote_with_backup():

with tempfile.TemporaryDirectory() as temp_dir:
Expand Down

0 comments on commit 70a32f0

Please sign in to comment.