#!/bin/bash
set -e

echo 'Running integration tests'
uv run --group dev --frozen pytest tests/integration \
      --html=build/report_integration.html \
      --jira \
      -s \
      --self-contained-html \
      -vv
echo 'Successfully ran integration tests'
