Files
pdf/scripts/test_gateway.ps1
2026-05-26 16:49:02 +05:30

11 lines
304 B
PowerShell

$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$gatewayDir = Join-Path (Split-Path -Parent $scriptDir) "gateway"
Write-Host "Running FastAPI Gateway integration tests..." -ForegroundColor Cyan
Push-Location $gatewayDir
try {
& .venv\Scripts\pytest $args
} finally {
Pop-Location
}