Spaces:
Running
Running
File size: 349 Bytes
a46bf8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#!/bin/bash
# Wrapper script to sync dependencies and run unit tests
set -e
if command -v uv >/dev/null 2>&1; then
echo "Syncing dependencies..."
uv sync
echo "Running unit tests..."
uv run pytest tests/unit/ -v -m "not openai and not embedding_provider" --tb=short -p no:logfire
else
echo "Error: uv not found"
exit 1
fi
|