mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
WINDOWS: enable passing/skipping tests (#21136)
This commit is contained in:
parent
59209d695b
commit
3de18d2ada
2 changed files with 4 additions and 11 deletions
|
@ -158,18 +158,10 @@ test_python() {
|
|||
-python/ray/tests:test_memstat
|
||||
-python/ray/tests:test_metrics
|
||||
-python/ray/tests:test_metrics_agent # timeout
|
||||
-python/ray/tests:test_multi_node
|
||||
-python/ray/tests:test_multi_node_2
|
||||
-python/ray/tests:test_multiprocessing # flaky, causes subsequent tests to fail
|
||||
-python/ray/tests:test_multiprocessing_client_mode
|
||||
-python/ray/tests:test_multi_node_3
|
||||
-python/ray/tests:test_multinode_failures_2
|
||||
-python/ray/tests:test_multiprocessing # test_connect_to_ray() fails to connect to raylet
|
||||
-python/ray/tests:test_multiprocessing_client_mode # timeout
|
||||
-python/ray/tests:test_node_manager
|
||||
-python/ray/tests:test_object_manager
|
||||
-python/ray/tests:test_placement_group # timeout and OOM
|
||||
-python/ray/tests:test_placement_group_2
|
||||
-python/ray/tests:test_placement_group_3
|
||||
-python/ray/tests:test_placement_group_mini_integration
|
||||
-python/ray/tests:test_object_manager # OOM on test_object_directory_basic
|
||||
-python/ray/tests:test_ray_init # test_redis_port() seems to fail here, but pass in isolation
|
||||
-python/ray/tests:test_resource_demand_scheduler
|
||||
-python/ray/tests:test_reference_counting # too flaky 9/25/21
|
||||
|
|
|
@ -352,6 +352,7 @@ def test_starmap(pool):
|
|||
assert pool.starmap(lambda x, y: x + y, zip([1, 2], [3, 4])) == [4, 6]
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.platform == "win32", reason="Hangs in windows")
|
||||
def test_callbacks(pool_4_processes,
|
||||
pool_4_processes_python_multiprocessing_lib):
|
||||
callback_queue = queue.Queue()
|
||||
|
|
Loading…
Add table
Reference in a new issue