This commit is contained in:
@@ -24,11 +24,11 @@ Write-Host "Workspace: $PSScriptRoot\.."
|
||||
Push-Location (Join-Path $PSScriptRoot "..")
|
||||
try {
|
||||
Invoke-Step -Name "Build (warnings/errors gate)" -Action { dotnet build }
|
||||
Invoke-Step -Name "Parity benchmark suite" -Action { dotnet test --filter "Suite=ParityBenchmark" }
|
||||
Invoke-Step -Name "Replay stability suite" -Action { dotnet test --filter "Suite=ReplayStability" }
|
||||
Invoke-Step -Name "Parity benchmark suite" -Action { dotnet test --no-build --filter "Suite=ParityBenchmark" }
|
||||
Invoke-Step -Name "Replay stability suite" -Action { dotnet test --no-build --filter "Suite=ReplayStability" }
|
||||
|
||||
if (-not $SkipFullTest) {
|
||||
Invoke-Step -Name "Full test suite" -Action { dotnet test }
|
||||
Invoke-Step -Name "Full test suite" -Action { dotnet test --no-build }
|
||||
} else {
|
||||
Write-Host ""
|
||||
Write-Host "==> Full test suite skipped by -SkipFullTest"
|
||||
|
||||
Reference in New Issue
Block a user