Internal result from a worker thread.
| 589 | |
| 590 | @dataclass |
| 591 | class _WorkerResult: |
| 592 | """Internal result from a worker thread.""" |
| 593 | |
| 594 | test_path: Path |
| 595 | test_result: TestResult |
| 596 | error_msg: str = "" |
| 597 | |
| 598 | def _run_one_test(test_path: Path) -> _WorkerResult: |
| 599 | """Run a single test in a worker thread.""" |