Spaces:
Build error
Build error
File size: 363 Bytes
016b413 b4ff56e 016b413 b4ff56e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # PowerShell pytest runner for pre-commit (Windows)
# Uses uv if available, otherwise falls back to pytest
if (Get-Command uv -ErrorAction SilentlyContinue) {
# Sync dependencies before running tests
uv sync
uv run pytest $args
} else {
Write-Warning "uv not found, using system pytest (may have missing dependencies)"
pytest $args
}
|