Skip to content

Commit

Permalink
Try fix: Closes open file (for Windows error)
Browse files Browse the repository at this point in the history
```
WindowsError: [Error 32] The process cannot access the file because it
is being used by another process
```
  • Loading branch information
pwolfram committed Apr 3, 2017
1 parent 283c80f commit 57d3324
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def test_write_store(self):
expected.dump_to_store(store)
# we need to cf decode the store because it has time and
# non-dimension coordinates
actual = xr.decode_cf(store)
self.assertDatasetAllClose(expected, actual)
with xr.decode_cf(store) as actual:
self.assertDatasetAllClose(expected, actual)

def check_dtypes_roundtripped(self, expected, actual):
for k in expected:
Expand Down Expand Up @@ -1044,10 +1044,9 @@ def test_read_byte_attrs_as_unicode(self):
with create_tmp_file() as tmp_file:
with nc4.Dataset(tmp_file, 'w') as nc:
nc.foo = b'bar'
actual = open_dataset(tmp_file)
expected = Dataset(attrs={'foo': 'bar'})
self.assertDatasetIdentical(expected, actual)
actual.close()
with open_dataset(tmp_file) as actual:
expected = Dataset(attrs={'foo': 'bar'})
self.assertDatasetIdentical(expected, actual)

def test_encoding_unlimited_dims(self):
ds = Dataset({'x': ('y', np.arange(10.0))})
Expand Down

0 comments on commit 57d3324

Please sign in to comment.