Repository: lucenenet Updated Branches: refs/heads/master 4c9cf1ba3 -> 8ec9e5f4e
build/build.ps1: added --no-restore option to dotnet test command Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/8ec9e5f4 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/8ec9e5f4 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/8ec9e5f4 Branch: refs/heads/master Commit: 8ec9e5f4ea344d4f07f85fb907e1ffc7f93f8cc1 Parents: 4c9cf1b Author: Shad Storhaug <[email protected]> Authored: Sat Sep 9 11:57:40 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sat Sep 9 11:57:40 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/8ec9e5f4/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index 1208363..acdf74b 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -196,7 +196,7 @@ task Test -depends InstallSDK -description "This task runs the tests" { foreach ($testProject in $testProjects) { $testName = $testProject.Directory.Name - $testExpression = "dotnet.exe test '$testProject' --configuration $configuration --framework $framework --no-build" + $testExpression = "dotnet.exe test '$testProject' --configuration $configuration --framework $framework --no-restore --no-build" $testResultDirectory = "$test_results_directory\$framework\$testName" #Ensure-Directory-Exists $testResultDirectory
