Roundtrip via an arrow file
(tmp_path: Path, df: pd.DataFrame)
| 32 | |
| 33 | |
| 34 | def save_load_arrow(tmp_path: Path, df: pd.DataFrame) -> pd.DataFrame: |
| 35 | """Roundtrip via an arrow file""" |
| 36 | fn = mktemp(".arrow", dir=tmp_path) |
| 37 | ArrowFormat.save_file(str(fn), df.copy(deep=True)) |
| 38 | return ArrowFormat.load_file(fn) |
| 39 | |
| 40 | |
| 41 | def test_convert_axis(): |
no test coverage detected