(self)
| 368 | |
| 369 | class IOReadMultipleNetCDF4Dask(IOMultipleNetCDF): |
| 370 | def setup(self): |
| 371 | # TODO: Lazily skipped in CI as it is very demanding and slow. |
| 372 | # Improve times and remove errors. |
| 373 | _skip_slow() |
| 374 | |
| 375 | requires_dask() |
| 376 | |
| 377 | self.make_ds() |
| 378 | self.format = "NETCDF4" |
| 379 | xr.save_mfdataset(self.ds_list, self.filenames_list, format=self.format) |
| 380 | |
| 381 | def time_load_dataset_netcdf4_with_block_chunks(self): |
| 382 | xr.open_mfdataset( |
nothing calls this directly
no test coverage detected