MCPcopy Index your code
hub / github.com/AutoForgeAI/autoforge / print_progress_summary

Function print_progress_summary

progress.py:235–247  ·  view source on GitHub ↗

Print a summary of current progress.

(project_dir: Path)

Source from the content-addressed store, hash-verified

233
234
235def print_progress_summary(project_dir: Path) -> None:
236 """Print a summary of current progress."""
237 passing, in_progress, total = count_passing_tests(project_dir)
238
239 if total > 0:
240 percentage = (passing / total) * 100
241 status_parts = [f"{passing}/{total} tests passing ({percentage:.1f}%)"]
242 if in_progress > 0:
243 status_parts.append(f"{in_progress} in progress")
244 print(f"\nProgress: {', '.join(status_parts)}")
245 send_progress_webhook(passing, total, project_dir)
246 else:
247 print("\nProgress: No features in database yet")

Callers 1

run_autonomous_agentFunction · 0.90

Calls 2

count_passing_testsFunction · 0.85
send_progress_webhookFunction · 0.85

Tested by

no test coverage detected