(self, test)
| 43 | self._send_result(test, None) |
| 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: |
| 52 | num += 1 |
| 53 | self._todo[test.procid] += 1 |
| 54 | self._last_idx[test.procid] = num |
| 55 | return self._send_test(create_subtest(num)) |
| 56 | |
| 57 | return False |
no test coverage detected