(self)
| 816 | ts.join_native(propagate=True) |
| 817 | |
| 818 | def test_failed_join_report(self): |
| 819 | res = Mock() |
| 820 | ts = self.app.GroupResult(uuid(), [res]) |
| 821 | res.state = states.FAILURE |
| 822 | res.backend.is_cached.return_value = True |
| 823 | assert next(ts._failed_join_report()) is res |
| 824 | res.backend.is_cached.return_value = False |
| 825 | with pytest.raises(StopIteration): |
| 826 | next(ts._failed_join_report()) |
| 827 | |
| 828 | def test_repr(self): |
| 829 | assert repr( |
nothing calls this directly
no test coverage detected