Skip to content

Commit

Permalink
Add longer timeout for mac (ray-project#43268)
Browse files Browse the repository at this point in the history
Co-authored-by: SangBin Cho <[email protected]>
  • Loading branch information
rkooo567 and SangBin Cho authored Feb 26, 2024
1 parent 3ad178e commit 8b73f18
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/ray/tests/test_plasma_unlimited.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@

MB = 1024 * 1024

# Note: Disk write speed can be as low as 6 MiB/s in AWS Mac instances, so we have to
# increase the timeout.
pytestmark = [pytest.mark.timeout(900 if platform.system() == "Darwin" else 180)]


def _init_ray():
return ray.init(num_cpus=2, object_store_memory=700e6)
Expand Down

0 comments on commit 8b73f18

Please sign in to comment.