From 55fe7f65a5d8d569a8c2a0ae0a2c621b2070cb8a Mon Sep 17 00:00:00 2001 From: SangBin Cho Date: Thu, 13 Aug 2020 18:45:26 -0700 Subject: [PATCH] [Tests] Make test_output debugging easy (#10091) * Fix. * Fix. --- python/ray/tests/test_output.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/ray/tests/test_output.py b/python/ray/tests/test_output.py index 2e9437d52..04ef2126a 100644 --- a/python/ray/tests/test_output.py +++ b/python/ray/tests/test_output.py @@ -36,6 +36,8 @@ def test_output(): [sys.executable, __file__, "_ray_instance"], stderr=subprocess.STDOUT).decode() lines = outputs.split("\n") + for line in lines: + print(line) assert len(lines) == 3, lines logging_header = r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2},\d{3}\sINFO\s" assert re.match(