(self)
| 349 | |
| 350 | class IOReadMultipleNetCDF3(IOReadMultipleNetCDF4): |
| 351 | def setup(self): |
| 352 | # TODO: Lazily skipped in CI as it is very demanding and slow. |
| 353 | # Improve times and remove errors. |
| 354 | _skip_slow() |
| 355 | |
| 356 | requires_dask() |
| 357 | |
| 358 | self.make_ds() |
| 359 | self.format = "NETCDF3_64BIT" |
| 360 | xr.save_mfdataset(self.ds_list, self.filenames_list, format=self.format) |
| 361 | |
| 362 | def time_load_dataset_scipy(self): |
| 363 | xr.open_mfdataset(self.filenames_list, engine="scipy").load() |
nothing calls this directly
no test coverage detected