()
| 267 | |
| 268 | @ray.remote |
| 269 | def oomer(): |
| 270 | mem = [] |
| 271 | while True: |
| 272 | mem.append([0] * 1000000000) |
| 273 | |
| 274 | with ray.init() as ctx: |
| 275 | with pytest.raises(ray.exceptions.WorkerCrashedError): |
nothing calls this directly
no test coverage detected
searching dependent graphs…