()
| 308 | |
| 309 | |
| 310 | def test_delayed_kwargs_apply(): |
| 311 | def f(x, y=True): |
| 312 | return x + y |
| 313 | |
| 314 | x = delayed(f)(1, y=2) |
| 315 | label = task_label(x.dask[x.key]) |
| 316 | assert "f" in label |
| 317 | assert "apply" not in label |
| 318 | |
| 319 | |
| 320 | @pytest.mark.parametrize("viz_func", [to_graphviz, _to_cytoscape_json]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…