#!/bin/bash

set -euo pipefail

export PYTHONUNBUFFERED=1

echo 'Running integration tests...'
uv run --group integration --frozen -- \
    python -m pytest -v tests/integration/

echo 'Done!'
