From 9f2645d6ea7167fe9309c55b9f1ef58817fd42ab Mon Sep 17 00:00:00 2001 From: Richard Liaw Date: Thu, 16 May 2019 13:50:03 -0700 Subject: [PATCH] [tune] Fix CLI test (#4801) --- python/ray/tune/tests/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tune/tests/test_commands.py b/python/ray/tune/tests/test_commands.py index ab27cc65d..f55dc8336 100644 --- a/python/ray/tune/tests/test_commands.py +++ b/python/ray/tune/tests/test_commands.py @@ -33,7 +33,7 @@ class Capturing(): @pytest.fixture def start_ray(): - ray.init() + ray.init(log_to_driver=False) _register_all() yield ray.shutdown()