(dask_cluster)
| 32 | |
| 33 | |
| 34 | def test_mstumped_int_input(dask_cluster): |
| 35 | with pytest.raises(TypeError): |
| 36 | with Client(dask_cluster) as dask_client: |
| 37 | mstumped(dask_client, np.arange(20).reshape(2, 10), 5) |
| 38 | |
| 39 | |
| 40 | @pytest.mark.filterwarnings("ignore:\\s+Port 8787 is already in use:UserWarning") |
nothing calls this directly
no test coverage detected