Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
corentincarton committed Feb 14, 2024
1 parent 9f6cbfd commit 81c058c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import tempfile
import time
from unittest.mock import patch

import git
Expand Down Expand Up @@ -102,7 +103,9 @@ def test_setup_remote():
)
assert os.path.exists(remote_path)
assert os.path.exists(os.path.join(remote_path, ".git"))


time.sleep(2)

print(os.listdir(os.path.join(remote_path, ".git")))
repo = git.Repo(remote_path)
print(repo.heads)
Expand Down

0 comments on commit 81c058c

Please sign in to comment.