Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit a0f0e59

Browse files
committed
Update NUnit args when running on AppVeyor
1 parent 05f5362 commit a0f0e59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Run-NUnit.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $dll = "test\$Project\bin\$Configuration\$Project.dll"
2424
if ($AppVeyor) {
2525
$nunitDirectory = Join-Path $rootDirectory packages\NUnit.ConsoleRunner.3.7.0\tools
2626
$consoleRunner = Join-Path $nunitDirectory nunit3-console.exe
27-
$args = "-noshadow", "-framework:net-4.5", "-exclude:Timings", $dll
27+
$args = "--result=$xml", "--framework:net-4.5", "--where:cat!=Timings", $dll
2828
[object[]] $output = "$consoleRunner " + ($args -join " ")
2929
& $consoleRunner ($args | %{ "`"$_`"" })
3030
if($LastExitCode -ne 0) {

0 commit comments

Comments
 (0)