MCPcopy Create free account
hub / github.com/InfinitiBit/graphbit / print_summary

Method print_summary

tests/iterative_agent_tests/test_helpers.py:97–108  ·  view source on GitHub ↗

Print final test summary.

(self)

Source from the content-addressed store, hash-verified

95 time.sleep(self.delay)
96
97 def print_summary(self):
98 """Print final test summary."""
99 total = self.passed + self.failed
100 print(f"\n{'=' * 60}")
101 status = "ALL PASSED ✅" if self.failed == 0 else f"{self.failed} FAILED ❌"
102 print(f"[{self.provider_name}] {self.passed}/{total} {status}")
103 if self.errors:
104 print(f"\nFailed tests:")
105 for name, err in self.errors:
106 print(f" ❌ {name}: {err[:100]}")
107 print(f"{'=' * 60}")
108 return self.failed == 0
109
110 # ── Standard test cases ───────────────────────────────────────────────
111

Callers 1

run_all_testsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected