(self, manager)
| 1178 | class test_group: |
| 1179 | @flaky |
| 1180 | def test_ready_with_exception(self, manager): |
| 1181 | if not manager.app.conf.result_backend.startswith('redis'): |
| 1182 | raise pytest.skip('Requires redis result backend.') |
| 1183 | |
| 1184 | g = group([add.s(1, 2), raise_error.s()]) |
| 1185 | result = g.apply_async() |
| 1186 | while not result.ready(): |
| 1187 | pass |
| 1188 | |
| 1189 | @flaky |
| 1190 | def test_empty_group_result(self, manager): |
nothing calls this directly
no test coverage detected