Skip to content

Commit e98dcb1

Browse files
authored
Reenable test_ucx_config_w_env_var (#8272)
1 parent 0dc9e88 commit e98dcb1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

distributed/comm/tests/test_ucx_config.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,9 @@ async def test_ucx_config(ucx_loop, cleanup):
108108
assert ucx_environment == {"UCX_MEMTRACK_DEST": "stdout"}
109109

110110

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

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

0 commit comments

Comments
 (0)