mirror of
https://github.com/askama-rs/askama.git
synced 2025-10-01 06:51:15 +00:00
13 lines
234 B
Bash
Executable File
13 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
if ! which uv > /dev/null; then
|
|
echo 'Please install `uv` first: <https://docs.astral.sh/uv/#getting-started>'
|
|
exit 1
|
|
fi > /dev/stderr
|
|
|
|
cd "$(dirname "$0")"
|
|
uv sync
|
|
exec uv run pytest --verbose
|