Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions distributed/shuffle/tests/test_shuffle_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ async def test_installation(s, a):


def test_split_by_worker():
pytest.importorskip("pyarrow")

df = pd.DataFrame(
{
"x": [1, 2, 3, 4, 5],
Expand All @@ -44,6 +46,8 @@ def test_split_by_worker():


def test_split_by_worker_empty():
pytest.importorskip("pyarrow")

df = pd.DataFrame(
{
"x": [1, 2, 3, 4, 5],
Expand All @@ -56,6 +60,8 @@ def test_split_by_worker_empty():


def test_split_by_worker_many_workers():
pytest.importorskip("pyarrow")

df = pd.DataFrame(
{
"x": [1, 2, 3, 4, 5],
Expand Down