()
| 1145 | |
| 1146 | |
| 1147 | def test_fuse_config(): |
| 1148 | with dask.config.set({"optimization.fuse.active": False}): |
| 1149 | d = { |
| 1150 | "a": 1, |
| 1151 | "b": (inc, "a"), |
| 1152 | } |
| 1153 | dependencies = {"b": ("a",)} |
| 1154 | assert fuse(d, "b", dependencies=dependencies) == (d, dependencies) |
| 1155 | |
| 1156 | |
| 1157 | def test_fused_keys_max_length(): # generic fix for gh-5999 |