Skip to content

Commit

Permalink
[Core] Increase timeout for test_plasma_unlimited (ray-project#44352)
Browse files Browse the repository at this point in the history
Same reason as ray-project#43268 but increase the timeout even more since disk write speed can be even lower.

Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
  • Loading branch information
jjyao committed Mar 29, 2024
1 parent 873a584 commit 0d3f075
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion python/ray/tests/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,6 @@ py_test_module_list(
"test_object_spilling_no_asan.py",
"test_object_spilling_2.py",
"test_object_spilling_3.py",
"test_plasma_unlimited.py",
"test_placement_group_mini_integration.py",
"test_scheduling_2.py",
"test_multiprocessing.py",
Expand All @@ -504,6 +503,15 @@ py_test_module_list(
deps = ["//:ray_lib", ":conftest"],
)

py_test_module_list(
files = [
"test_plasma_unlimited.py",
],
size = "enormous",
tags = ["exclusive", "large_size_python_tests_shard_1", "team:core"],
deps = ["//:ray_lib", ":conftest"],
)

py_test_module_list(
files = [
"test_multi_node_3.py",
Expand Down
2 changes: 1 addition & 1 deletion python/ray/tests/test_plasma_unlimited.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# 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)]
pytestmark = [pytest.mark.timeout(1800 if platform.system() == "Darwin" else 180)]


def _init_ray():
Expand Down

0 comments on commit 0d3f075

Please sign in to comment.