Joseph Pollack
adds local embeddings and huggingface inference as defaults , adds tests , improves precommit and ci
cd46aca unverified
raw
history blame
303 Bytes
# PowerShell pytest runner for pre-commit (Windows)
# Uses uv if available, otherwise falls back to pytest
if (Get-Command uv -ErrorAction SilentlyContinue) {
uv run pytest $args
} else {
Write-Warning "uv not found, using system pytest (may have missing dependencies)"
pytest $args
}