From df0733cafb7f565e9288ef01c797f0eb463a864b Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Mon, 7 Jan 2019 05:24:29 +0800 Subject: [PATCH] Skip test_multiple_recursive (#3683) This test often hangs or fails in CI. Skip it for now to unblock other PRs. --- test/stress_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/stress_tests.py b/test/stress_tests.py index 8ebfd32f3..644b1eb1b 100644 --- a/test/stress_tests.py +++ b/test/stress_tests.py @@ -336,6 +336,7 @@ def test_recursive(ray_start_reconstruction): assert node.all_processes_alive() +@pytest.mark.skip(reason="This test often hangs or fails in CI.") @pytest.mark.skipif( os.environ.get("RAY_USE_NEW_GCS") == "on", reason="Failing with new GCS API on Linux.")