We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a28786 commit 9f47366Copy full SHA for 9f47366
1 file changed
src/hdf5plugin/test.py
@@ -445,7 +445,8 @@ def testAbsoluteMode(self):
445
compression = hdf5plugin.SZ(absolute=tolerance)
446
447
with tempfile.TemporaryDirectory() as tempdir:
448
- with h5py.File(os.path.join(tempdir, "testsz.h5"), 'w') as f:
+ filename = os.path.join(tempdir, "testsz.h5")
449
+ with h5py.File(filename, 'w', driver="core", backing_store=False) as f:
450
f.create_dataset('var', data=data, chunks=data.shape, **compression)
451
f.flush()
452
0 commit comments