mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[core] Skip windows test for adjusting worker OOM score (#24744)
Fixes CI failure introduced in #24623.
This commit is contained in:
parent
e2ee2140f9
commit
2fd888ac9d
1 changed files with 4 additions and 0 deletions
|
@ -186,6 +186,10 @@ def test_function_table_gc_actor(call_ray_start):
|
|||
wait_for_condition(lambda: function_entry_num(job_id) == 0)
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
sys.platform != "linux",
|
||||
reason="This test is only run on linux machines.",
|
||||
)
|
||||
def test_worker_oom_score(shutdown_only):
|
||||
@ray.remote
|
||||
def get_oom_score():
|
||||
|
|
Loading…
Add table
Reference in a new issue