From bdef34c55b209be20c8fd86d09c3d9cee6559bfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Apr 2023 16:30:41 +0200 Subject: [PATCH] Removing pipes --- tests/start_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/start_test.py b/tests/start_test.py index 0748bd0..d1203f1 100755 --- a/tests/start_test.py +++ b/tests/start_test.py @@ -123,9 +123,7 @@ def start_opensmtpd(cfg_path): "-f", cfg_path.name, ] - p = subprocess.Popen( - args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) + p = subprocess.Popen(args) time.sleep(5) return p.pid