(gz_path: str)
| 656 | ext = MagicMock() |
| 657 | |
| 658 | def _extract(gz_path: str) -> ExtractionResult: |
| 659 | with lock: |
| 660 | started.append(gz_path) |
| 661 | if len(started) == 2: |
| 662 | started_two.set() |
| 663 | release.wait(timeout=2) |
| 664 | return _make_result(gz_path) |
| 665 | |
| 666 | ext.extract.side_effect = _extract |
| 667 |
nothing calls this directly
no test coverage detected