#!/bin/sh

# scripts/test: Run test suite for application using nox.

set -e

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

echo "==> Running tests…"

uv run nox "$@"
