(self, test)
| 210 | return test.subtest_id |
| 211 | |
| 212 | def _next_test(self, test): |
| 213 | if self.is_stopped: |
| 214 | return False |
| 215 | |
| 216 | analysis_subtest = self._create_analysis_subtest(test) |
| 217 | if analysis_subtest: |
| 218 | return self._send_test(analysis_subtest) |
| 219 | |
| 220 | self._gens[test.procid] = self._create_gen(test) |
| 221 | return self._try_send_next_test(test) |
| 222 | |
| 223 | def _create_analysis_subtest(self, test): |
| 224 | if self._disable_analysis: |
nothing calls this directly
no test coverage detected