()
| 71 | |
| 72 | |
| 73 | def test_errors_propagate(): |
| 74 | dsk = {"x": (bad,)} |
| 75 | |
| 76 | with pytest.raises(ValueError) as e: |
| 77 | get(dsk, "x") |
| 78 | assert "12345" in str(e.value) |
| 79 | |
| 80 | |
| 81 | def test_remote_exception(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…