(self)
| 1374 | ): |
| 1375 | |
| 1376 | def setUp(self): |
| 1377 | super().setUp() |
| 1378 | |
| 1379 | self.array_size = (0, 10) |
| 1380 | # set chunkshape so it divides evenly into array_size, to avoid |
| 1381 | # partially filled chunks |
| 1382 | self.chunkshape = (1000, 10) |
| 1383 | # approximate size (in bytes) of non-data portion of hdf5 file |
| 1384 | self.hdf_overhead = 6000 |
| 1385 | |
| 1386 | def create_array(self, complevel): |
| 1387 | filters = tb.Filters(complevel=complevel, complib="blosc") |