()
| 595 | _counts_result: list[TestCounts] = [] |
| 596 | |
| 597 | def _discover_counts() -> None: |
| 598 | try: |
| 599 | _counts_result.append(get_test_counts()) |
| 600 | except KeyboardInterrupt as ki: |
| 601 | handle_keyboard_interrupt(ki) |
| 602 | except Exception: |
| 603 | pass |
| 604 | |
| 605 | _discovery_thread = threading.Thread( |
| 606 | target=_discover_counts, daemon=True, name="TestDiscovery" |
nothing calls this directly
no test coverage detected