Skip to content

Commit 9f47366

Browse files
committed
use core driver
1 parent 1a28786 commit 9f47366

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/hdf5plugin/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,8 @@ def testAbsoluteMode(self):
445445
compression = hdf5plugin.SZ(absolute=tolerance)
446446

447447
with tempfile.TemporaryDirectory() as tempdir:
448-
with h5py.File(os.path.join(tempdir, "testsz.h5"), 'w') as f:
448+
filename = os.path.join(tempdir, "testsz.h5")
449+
with h5py.File(filename, 'w', driver="core", backing_store=False) as f:
449450
f.create_dataset('var', data=data, chunks=data.shape, **compression)
450451
f.flush()
451452

0 commit comments

Comments
 (0)