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
5 changes: 2 additions & 3 deletions distributed/comm/tests/test_ucx_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,9 @@ async def test_ucx_config(ucx_loop, cleanup):
assert ucx_environment == {"UCX_MEMTRACK_DEST": "stdout"}


@pytest.mark.xfail(reason="https://github.com/dask/distributed/issues/5229")
def test_ucx_config_w_env_var(ucx_loop, cleanup, loop):
env = os.environ.copy()
env["DASK_RMM__POOL_SIZE"] = "1000.00 MB"
env["DASK_DISTRIBUTED__RMM__POOL_SIZE"] = "1000.00 MB"

port = str(open_port())
# Using localhost appears to be less flaky than {HOST}. Additionally, this is
Expand All @@ -136,7 +135,7 @@ def test_ucx_config_w_env_var(ucx_loop, cleanup, loop):
],
env=env,
):
with Client(sched_addr, loop=loop, timeout=60) as c:
with Client(sched_addr, loop=loop, timeout=30) as c:
while not c.scheduler_info()["workers"]:
sleep(0.1)

Expand Down