Skip to content

Commit

Permalink
xfail windows asyncio_tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Oct 29, 2023
1 parent 14df449 commit 83b308a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion distributed/comm/tests/test_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
)
from distributed.comm.registry import backends, get_backend
from distributed.comm.tcp import get_stream_address
from distributed.compatibility import asyncio_run
from distributed.compatibility import WINDOWS, asyncio_run
from distributed.config import get_loop_factory
from distributed.metrics import time
from distributed.protocol import Serialized, deserialize, serialize, to_serialize
Expand Down Expand Up @@ -1447,6 +1447,8 @@ async def test_share_buffer_with_header(
test_do_not_share_buffers
"""
np = pytest.importorskip("numpy")
if tcp is asyncio_tcp and WINDOWS:
pytest.xfail("asyncio_tcp is faulty on windows")

async def handle_comm(comm):
comm.max_shard_size = 250_000
Expand Down

0 comments on commit 83b308a

Please sign in to comment.