From 58b65d39a90bdde8a0ebbc186c2e78a0e70a0205 Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Tue, 5 Jul 2016 18:59:54 -0700 Subject: [PATCH] don't display errors when running test (#213) --- test/runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtest.py b/test/runtest.py index 414380ae6..2421acabc 100644 --- a/test/runtest.py +++ b/test/runtest.py @@ -240,7 +240,7 @@ class APITest(unittest.TestCase): def testNoArgs(self): worker_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_worker.py") - services.start_ray_local(num_workers=1, worker_path=worker_path) + services.start_ray_local(num_workers=1, worker_path=worker_path, driver_mode=ray.WORKER_MODE) test_functions.no_op() time.sleep(0.2)