(self, shape, chunks, limit)
| 39 | |
| 40 | class DataArrayMissingBottleneck: |
| 41 | def setup(self, shape, chunks, limit): |
| 42 | if chunks is not None: |
| 43 | requires_dask() |
| 44 | self.da = make_bench_data(shape, 0.1, chunks) |
| 45 | |
| 46 | @parameterized( |
| 47 | ["shape", "chunks", "limit"], |
nothing calls this directly
no test coverage detected