From 2bfd5241e3e290c9608ae9b699bcb0592967aa79 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Wed, 26 Mar 2025 16:41:23 +1100 Subject: [PATCH] fix previous commit compilation --- tests/integration/testmanager.nim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/integration/testmanager.nim b/tests/integration/testmanager.nim index b4ceecc3..8de1d184 100644 --- a/tests/integration/testmanager.nim +++ b/tests/integration/testmanager.nim @@ -334,6 +334,9 @@ proc buildCommand( else: "TRACE;disabled:libp2p,websock,JSONRPC-HTTP-CLIENT,JSONRPC-WS-CLIENT,discv5" + let unittestVerbosity = + when not defined(windows): "-d:nimUnittestOutputLevel:VERBOSE" else: "" + withLock(test.manager.hardhatPortLock): try: return @@ -350,8 +353,7 @@ proc buildCommand( # colours, and loglevel = TRACE). "-d:chronicles_log_level=TRACE " & "-d:chronicles_sinks=textlines[nocolors,file] " & - when not defined(windows): - "-d:nimUnittestOutputLevel:VERBOSE " & + &"{unittestVerbosity} " & "--verbosity:0 " & "--hints:off " & "-d:release " &