Files

11 lines
304 B
PowerShell
Raw Permalink Normal View History

2026-05-22 15:47:48 +05:30
$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 {
2026-05-26 16:49:02 +05:30
& .venv\Scripts\pytest $args
2026-05-22 15:47:48 +05:30
} finally {
Pop-Location
}