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 87ce6b9 commit b512005Copy full SHA for b512005
build.fsx
@@ -262,7 +262,10 @@ Target "Build.NetCore" (fun _ ->
262
)
263
264
Target "RunTests.NetCore" (fun _ ->
265
- runCmdIn "tests/service/" "dotnet" "test --result:TestResults.NetCore.xml;format=nunit3"
+ try
266
+ runCmdIn "tests/service/" "dotnet" "test -c Release --result:TestResults.NetCore.xml;format=nunit3"
267
+ with _ ->
268
+ printfn ".NET core tests failed"
269
270
271
//use dotnet-mergenupkg to merge the .netcore nuget package into the default one
0 commit comments