()
| 193 | |
| 194 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
| 195 | def test_explode(): |
| 196 | with dask.config.set({"dataframe.convert-string": False}): |
| 197 | pdf = pd.DataFrame({"a": [[1, 2], [3, 4]]}) |
| 198 | df = from_pandas(pdf) |
| 199 | assert_eq(pdf.explode(column="a"), df.explode(column="a")) |
| 200 | assert_eq(pdf.a.explode(), df.a.explode()) |
| 201 | |
| 202 | |
| 203 | @xfail_gpu("https://github.com/rapidsai/cudf/issues/10271") |
nothing calls this directly
no test coverage detected
searching dependent graphs…