(temp_h5_path)
| 31 | |
| 32 | |
| 33 | def test_format_kwarg_in_constructor(temp_h5_path): |
| 34 | # GH 13291 |
| 35 | |
| 36 | msg = "format is not a defined argument for HDFStore" |
| 37 | |
| 38 | with pytest.raises(ValueError, match=msg): |
| 39 | HDFStore(temp_h5_path, format="table") |
| 40 | |
| 41 | |
| 42 | def test_api_default_format(temp_hdfstore): |