You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertnothasattr(git_cmd_no_auth, 'custom_environment') or'GIT_CONFIG_PARAMETERS'notin (git_cmd_no_auth.custom_environmentor {}), "Should not have auth without token"
55
+
print(" ✓ Git command without auth works")
56
+
57
+
# Test 5: Test git installation check
58
+
print("✅ Testing Git installation check...")
59
+
try:
60
+
awaitgit_utils.ensure_git_installed()
61
+
print(" ✓ Git is installed and accessible")
62
+
exceptExceptionase:
63
+
print(f" ✗ Git installation check failed: {e}")
64
+
65
+
print("\n🎉 All basic tests passed! GitPython integration is working.")
0 commit comments