Skip to content

Commit 7b59128

Browse files
CopilotTheAngryByrd
andcommitted
Add console logger with detailed verbosity for CI output
Co-authored-by: TheAngryByrd <[email protected]>
1 parent 7821bae commit 7b59128

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build/build.fs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,15 +364,21 @@ let integrationTests ctx =
364364
(fun c -> {
365365
c with
366366
Configuration = configuration (ctx.Context.AllExecutingTargets)
367-
Logger = Some "trx;LogFilePrefix=testResults"
367+
Logger = Some "console;verbosity=detailed"
368368
Common =
369369
{
370370
c.Common with
371371
Environment =
372372
c.Common.Environment
373373
|> Map.add "MINISCAFFOLD_NUPKG_LOCATION" (getPkgPath ())
374374
}
375-
|> DotNet.Options.withAdditionalArgs runSettingsArgs
375+
|> DotNet.Options.withAdditionalArgs (
376+
[
377+
"--logger"
378+
"trx;LogFilePrefix=testResults"
379+
]
380+
@ runSettingsArgs
381+
)
376382
})
377383
proj
378384
)

0 commit comments

Comments
 (0)