From 38399c98855206c77410c3da81b64f426e8ffbde Mon Sep 17 00:00:00 2001 From: Simon Mo Date: Wed, 27 May 2020 10:40:40 -0700 Subject: [PATCH] [Hotfix] [Serve] Disable Deployment Tutorial Test (#8641) --- python/ray/serve/BUILD | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/python/ray/serve/BUILD b/python/ray/serve/BUILD index e680e3561..b7ae8e7ee 100644 --- a/python/ray/serve/BUILD +++ b/python/ray/serve/BUILD @@ -89,11 +89,13 @@ py_test( deps = [":serve_lib"] ) -py_test( - name = "tutorial_deploy", - size = "small", - srcs = glob(["examples/doc/*.py"]), - tags = ["exclusive"], - deps = [":serve_lib"] -) +# Disable the deployment tutorial test because it requires +# ray start --head in the background. +# py_test( + #name = "tutorial_deploy", + #size = "small", + #srcs = glob(["examples/doc/*.py"]), + #tags = ["exclusive"], + #deps = [":serve_lib"] +# )