From 17f0d50f1a39a77ee1c34b3600e568339af8e0f5 Mon Sep 17 00:00:00 2001 From: Edward Oakes Date: Wed, 29 Apr 2020 14:36:09 -0500 Subject: [PATCH] [serve] Temporarily disable test_master_crashes (#8230) --- python/ray/serve/BUILD | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/python/ray/serve/BUILD b/python/ray/serve/BUILD index 41f77bd6b..124a6a7b4 100644 --- a/python/ray/serve/BUILD +++ b/python/ray/serve/BUILD @@ -21,15 +21,16 @@ py_test( ) # Runs test_api and test_failure with injected failures in the master actor. -py_test( - name = "test_master_crashes", - size = "medium", - srcs = glob(["tests/test_master_crashes.py", - "tests/test_api.py", - "tests/test_failure.py"], - exclude=["tests/test_nonblocking.py", - "tests/test_serve.py"]), -) +# TODO(edoakes): reenable this once we're using GCS actor fault tolerance. +# py_test( + # name = "test_master_crashes", + # size = "medium", + # srcs = glob(["tests/test_master_crashes.py", + # "tests/test_api.py", + # "tests/test_failure.py"], + # exclude=["tests/test_nonblocking.py", + # "tests/test_serve.py"]), +# ) py_test( name = "echo_full", @@ -86,4 +87,4 @@ py_test( srcs = glob(["examples/doc/*.py"]), tags = ["exclusive"], deps = [":serve_lib"] -) \ No newline at end of file +)