From 50e8f55e7d5928af9c3411afdb4fbedb4d8f770d Mon Sep 17 00:00:00 2001 From: "W. Felix Handte" Date: Thu, 9 Mar 2023 12:46:37 -0500 Subject: [PATCH] Fix Python 3.6 Incompatibility in CLI Tests --- tests/cli-tests/run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/cli-tests/run.py b/tests/cli-tests/run.py index 45af5124b..a2e1c1f86 100755 --- a/tests/cli-tests/run.py +++ b/tests/cli-tests/run.py @@ -535,7 +535,8 @@ class TestSuite: subprocess.run( args=[script], stdin=subprocess.DEVNULL, - capture_output=True, + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, cwd=cwd, env=env, check=True,