Browse Source

fix unit test for pipeline

pull/16145/head
selmankoc 3 years ago
parent
commit
4ffaeb85bf
  1. 4
      nupkg/pack.ps1
  2. 4
      nupkg/unit_test.ps1

4
nupkg/pack.ps1

@ -23,8 +23,8 @@ foreach($project in $projects) {
# Create nuget pack
Write-Info "[$i / $projectsCount] - Packing project: $projectName"
Set-Location $projectFolder
# dotnet clean
dotnet pack -c Release /maxcpucount
#dotnet clean
dotnet pack -c Release --no-build
if (-Not $?) {
Write-Error "Packaging failed for the project: $projectName"

4
nupkg/unit_test.ps1

@ -4,7 +4,5 @@
foreach($solution in $solutions) {
$solutionFolder = Join-Path $rootFolder $solution
Set-Location $solutionFolder
dotnet test --no-build --logger trx
dotnet test --configuration Release --logger trx -- /maxcpucount
}

Loading…
Cancel
Save