We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7821bae commit 7b59128Copy full SHA for 7b59128
build/build.fs
@@ -364,15 +364,21 @@ let integrationTests ctx =
364
(fun c -> {
365
c with
366
Configuration = configuration (ctx.Context.AllExecutingTargets)
367
- Logger = Some "trx;LogFilePrefix=testResults"
+ Logger = Some "console;verbosity=detailed"
368
Common =
369
{
370
c.Common with
371
Environment =
372
c.Common.Environment
373
|> Map.add "MINISCAFFOLD_NUPKG_LOCATION" (getPkgPath ())
374
}
375
- |> DotNet.Options.withAdditionalArgs runSettingsArgs
+ |> DotNet.Options.withAdditionalArgs (
376
+ [
377
+ "--logger"
378
+ "trx;LogFilePrefix=testResults"
379
+ ]
380
+ @ runSettingsArgs
381
+ )
382
})
383
proj
384
)
0 commit comments