Run standalone check.
()
| 250 | |
| 251 | |
| 252 | def main() -> int: |
| 253 | """Run standalone check.""" |
| 254 | success, violations = check() |
| 255 | if success: |
| 256 | print("✅ Test aggregation structure OK") |
| 257 | return 0 |
| 258 | print(f"❌ Found {len(violations)} test aggregation violation(s):") |
| 259 | for v in violations: |
| 260 | print(f" {v}") |
| 261 | return 1 |
| 262 | |
| 263 | |
| 264 | if __name__ == "__main__": |
no test coverage detected