From d6f1905ab2f780023b6041091f51e6f0459451f3 Mon Sep 17 00:00:00 2001 From: "B. Blechschmidt" Date: Sun, 23 Jun 2024 19:35:10 +0200 Subject: [PATCH] Test --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 5982c1c..ff4b8df 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -58,7 +58,7 @@ def start(self): self.read_fd, write_fd = os.pipe() self.process = subprocess.Popen( ['pallium', 'run', '--pid-file', '/proc/self/fd/%d' % write_fd, '--quiet', self.profile_path], - pass_fds=[write_fd], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) + pass_fds=[write_fd]) self.wait_for_startup() def close(self):