#!/usr/bin/env bash
set -euo pipefail

echo "Running tests..."
uv run pytest tests/ -q --tb=short --ignore=tests/benchmarks/test_accuracy.py

echo "Pre-commit checks passed."
