(self)
| 807 | ]) |
| 808 | |
| 809 | def test_join_native_raises(self): |
| 810 | ts = self.app.GroupResult(uuid(), [self.app.AsyncResult(uuid())]) |
| 811 | ts.iter_native = Mock() |
| 812 | ts.iter_native.return_value = iter([ |
| 813 | (uuid(), {'status': states.FAILURE, 'result': KeyError()}) |
| 814 | ]) |
| 815 | with pytest.raises(KeyError): |
| 816 | ts.join_native(propagate=True) |
| 817 | |
| 818 | def test_failed_join_report(self): |
| 819 | res = Mock() |
nothing calls this directly
no test coverage detected