11 lines
304 B
PowerShell
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
|
|
}
|