From fbaf19543e241079a26fc71a7ab72a6166b85398 Mon Sep 17 00:00:00 2001 From: Zach Dwiel Date: Wed, 3 Oct 2018 14:57:57 -0400 Subject: [PATCH] capture stdout during preset tests --- rl_coach/tests/presets/test_presets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rl_coach/tests/presets/test_presets.py b/rl_coach/tests/presets/test_presets.py index aeea1c0..ee4e63c 100644 --- a/rl_coach/tests/presets/test_presets.py +++ b/rl_coach/tests/presets/test_presets.py @@ -61,7 +61,7 @@ def test_preset_runs(preset): if level != "": params += ["-lvl", level] - p = Popen(params, stdout=DEVNULL) + p = Popen(params) # wait 10 seconds overhead of initialization etc. time.sleep(10)