#!/bin/sh

# scripts/test: Run test suite for application. Optionally pass in a path to an
#               individual test file to run a single test.


set -e

cd "$(dirname "$0")/.."

echo "==> Running tests…"

uv run pytest "$@"
