From 8997573d60a4539f3e11e6e0b8e078e7fb46ef82 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:01:33 +1100 Subject: [PATCH] force output to parent streams in windows --- tests/integration/nodes.nim | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/integration/nodes.nim b/tests/integration/nodes.nim index 8c7787d7..f51b9399 100644 --- a/tests/integration/nodes.nim +++ b/tests/integration/nodes.nim @@ -29,7 +29,7 @@ type client: ?CodexClient proc start(node: NodeProcess) = - if node.debug: + if node.debug or defined(windows): node.process = osproc.startProcess( executable, workingDir, @@ -40,8 +40,7 @@ proc start(node: NodeProcess) = node.process = osproc.startProcess( executable, workingDir, - node.arguments, - options={poStdErrToStdOut, poInteractive} + node.arguments ) proc waitUntilOutput*(node: NodeProcess, output: string) =