(map_ds)
| 1680 | |
| 1681 | @requires_scipy_or_netCDF4 |
| 1682 | def test_normalize_token_with_backend(map_ds): |
| 1683 | with create_tmp_file(allow_cleanup_failure=ON_WINDOWS) as tmp_file: |
| 1684 | map_ds.to_netcdf(tmp_file) |
| 1685 | read = xr.open_dataset(tmp_file) |
| 1686 | assert dask.base.tokenize(map_ds) != dask.base.tokenize(read) |
| 1687 | read.close() |
| 1688 | |
| 1689 | |
| 1690 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…