(self)
| 425 | |
| 426 | class IOReadMultipleNetCDF3Dask(IOReadMultipleNetCDF4Dask): |
| 427 | def setup(self): |
| 428 | # TODO: Lazily skipped in CI as it is very demanding and slow. |
| 429 | # Improve times and remove errors. |
| 430 | _skip_slow() |
| 431 | |
| 432 | requires_dask() |
| 433 | |
| 434 | self.make_ds() |
| 435 | self.format = "NETCDF3_64BIT" |
| 436 | xr.save_mfdataset(self.ds_list, self.filenames_list, format=self.format) |
| 437 | |
| 438 | def time_load_dataset_scipy_with_block_chunks(self): |
| 439 | with dask.config.set(scheduler="multiprocessing"): |
nothing calls this directly
no test coverage detected