Skip to content

Commit

Permalink
Workaround ARROW-7944
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Feb 26, 2020
1 parent 81423ab commit 2cfd7c1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/pyarrow/tests/test_parquet.py
Expand Up @@ -2816,12 +2816,14 @@ def is_pickleable(obj):
assert is_pickleable(metadata.row_group(i))


@pytest.mark.pandas
def test_builtin_pickle_dataset(tempdir, datadir):
import pickle
dataset = _make_dataset_for_pickling(tempdir)
_assert_dataset_is_picklable(dataset, pickler=pickle)


@pytest.mark.pandas
def test_cloudpickle_dataset(tempdir, datadir):
cp = pytest.importorskip('cloudpickle')
dataset = _make_dataset_for_pickling(tempdir)
Expand Down

0 comments on commit 2cfd7c1

Please sign in to comment.