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 a99e1f0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions xarray/tests/test_backends.py
Original file line number Diff line number Diff line change
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 a99e1f0

Please sign in to comment.