Repository: lucenenet Updated Branches: refs/heads/api-work 42fb4f0a8 -> 99d160ad3
build\build.ps1: Removed teamcity flag from dotnet.exe because it is not supported and causing the test runner to fail Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/99d160ad Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/99d160ad Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/99d160ad Branch: refs/heads/api-work Commit: 99d160ad326f1b2811935710cbf4afeee8ce0cf7 Parents: 42fb4f0 Author: Shad Storhaug <[email protected]> Authored: Tue Apr 11 14:53:38 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Tue Apr 11 14:53:38 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/99d160ad/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index bd66333..f22bc82 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -108,10 +108,10 @@ task Test -description "This task runs the tests" { $testBinary = "$binaryRoot\$testName.dll" } - $testExpression = "$tools_directory\NUnit\NUnit.ConsoleRunner.3.5.0\tools\nunit3-console.exe $testBinary" + $testExpression = "$tools_directory\NUnit\NUnit.ConsoleRunner.3.5.0\tools\nunit3-console.exe $testBinary --teamcity" } - $testExpression = "$testExpression --result:$projectDirectory\TestResult.xml --teamcity" + $testExpression = "$testExpression --result:$projectDirectory\TestResult.xml" if ($where -ne $null -and (-Not [System.String]::IsNullOrEmpty($where))) { $testExpression = "$testExpression --where $where"
