()
| 1111 | |
| 1112 | |
| 1113 | def test_block_tuple(): |
| 1114 | for arrays in [([1, 2], [3, 4]), [(1, 2), (3, 4)]]: |
| 1115 | with pytest.raises(TypeError) as e: |
| 1116 | da.block(arrays) |
| 1117 | e.match(r"tuple") |
| 1118 | |
| 1119 | |
| 1120 | def test_broadcast_shapes(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…