(idx)
| 44 | |
| 45 | def _try_send_next_test(self, test): |
| 46 | def create_subtest(idx): |
| 47 | seed = self._seed or random_utils.random_seed() |
| 48 | return test.create_subtest(self, idx, random_seed=seed) |
| 49 | |
| 50 | num = self._last_idx[test.procid] |
| 51 | if not self._count or num < self._count: |
no test coverage detected