(self, manager, num=10)
| 297 | |
| 298 | @flaky |
| 299 | def test_parent_ids(self, manager, num=10): |
| 300 | assert_ping(manager) |
| 301 | |
| 302 | c = chain(ids.si(i=i) for i in range(num)) |
| 303 | c.freeze() |
| 304 | res = c() |
| 305 | try: |
| 306 | res.get(timeout=TIMEOUT) |
| 307 | except TimeoutError: |
| 308 | print(manager.inspect().active()) |
| 309 | print(manager.inspect().reserved()) |
| 310 | print(manager.inspect().stats()) |
| 311 | raise |
| 312 | self.assert_ids(res, num - 1) |
| 313 | |
| 314 | def assert_ids(self, res, size): |
| 315 | i, root = size, res |
nothing calls this directly
no test coverage detected