Sync parity docs and strengthen replay gate coverage
Some checks failed
Release Gate / gate (push) Has been cancelled

This commit is contained in:
2026-04-03 19:34:14 +09:00
parent 5de5c74040
commit 3b03b18f83
6 changed files with 122 additions and 11 deletions

View File

@@ -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"