(temp_h5_path)
| 181 | |
| 182 | |
| 183 | def test_flush(temp_h5_path): |
| 184 | with HDFStore(temp_h5_path, mode="w") as store: |
| 185 | store["a"] = Series(range(5)) |
| 186 | store.flush() |
| 187 | store.flush(fsync=True) |
| 188 | |
| 189 | |
| 190 | def test_complibs_default_settings(temp_h5_path, using_infer_string): |