Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -3444,11 +3444,6 @@ def new_dataset_and_coord_attrs():
with create_tmp_file() as tmp_file:
ds.to_netcdf(tmp_file)

ds, attrs = new_dataset_and_attrs()
attrs['test'] = np.arange(12).reshape(3, 4)
with create_tmp_file() as tmp_file:
ds.to_netcdf(tmp_file)

ds, attrs = new_dataset_and_attrs()
attrs['test'] = 'This is a string'
with create_tmp_file() as tmp_file:
Expand All @@ -3459,11 +3454,6 @@ def new_dataset_and_coord_attrs():
with create_tmp_file() as tmp_file:
ds.to_netcdf(tmp_file)

ds, attrs = new_dataset_and_attrs()
attrs['test'] = np.arange(12).reshape(3, 4)
with create_tmp_file() as tmp_file:
ds.to_netcdf(tmp_file)


@requires_scipy_or_netCDF4
class TestDataArrayToNetCDF(object):
Expand Down