From de8d9d3e442e50f42bdc8b154294b2a9c6c8c5aa Mon Sep 17 00:00:00 2001 From: SangBin Cho Date: Sun, 21 Feb 2021 23:32:48 -0800 Subject: [PATCH] [Test] Skip test_load_balancing_under_constrained_memory on Windows (#14242) * Skip the window test. * Remove unrelated changes. * Remove unrelated changes. --- python/ray/tests/test_scheduling.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/ray/tests/test_scheduling.py b/python/ray/tests/test_scheduling.py index c53c44361..dbe401577 100644 --- a/python/ray/tests/test_scheduling.py +++ b/python/ray/tests/test_scheduling.py @@ -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.