Spaces:
Running on Zero
Running on Zero
File size: 366 Bytes
7f9dfed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | $ErrorActionPreference = "Stop"
$python = ".venv\Scripts\python.exe"
if (-not (Test-Path $python)) {
$python = "python"
try {
& $python --version | Out-Null
} catch {
$python = "$env:LOCALAPPDATA\Microsoft\WindowsApps\python3.11.exe"
}
}
& $python scripts/smoke_app.py
if ($LASTEXITCODE -ne 0) {
throw "App smoke test failed"
}
|