mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[Test] Skip test_load_balancing_under_constrained_memory on Windows (#14242)
* Skip the window test. * Remove unrelated changes. * Remove unrelated changes.
This commit is contained in:
parent
e75b143faf
commit
de8d9d3e44
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
# coding: utf-8
|
||||
import collections
|
||||
import logging
|
||||
import platform
|
||||
import sys
|
||||
import time
|
||||
|
||||
|
@ -113,6 +114,8 @@ def test_load_balancing_with_dependencies(ray_start_cluster, fast):
|
|||
attempt_to_load_balance(f, [x], 100, num_nodes, 25)
|
||||
|
||||
|
||||
@pytest.mark.skipif(
|
||||
platform.system() == "Windows", reason="Failing on Windows. Multi node.")
|
||||
def test_load_balancing_under_constrained_memory(ray_start_cluster):
|
||||
# This test ensures that tasks are being assigned to all raylets in a
|
||||
# roughly equal manner even when the tasks have dependencies.
|
||||
|
|
Loading…
Add table
Reference in a new issue