From 6b1e0b0f385007ae29fb15ec372f123fbcdf5270 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Thu, 16 Nov 2023 16:52:58 +1100 Subject: [PATCH] attempt to fix windows ci not starting codex fast enough --- tests/integration/nodes.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/nodes.nim b/tests/integration/nodes.nim index 706b52eb..8c824c96 100644 --- a/tests/integration/nodes.nim +++ b/tests/integration/nodes.nim @@ -54,6 +54,8 @@ proc waitUntilStarted*(node: NodeProcess) = if node.debug: sleep(5_000) else: + when defined(windows): + sleep(5_000) node.waitUntilOutput("Started codex node") proc startNode*(args: openArray[string], debug: string | bool = false): NodeProcess =