#!/bin/bash

set -e

# run pytest with args set
echo 'Running tests...'
PYTHONDONTWRITEBYTECODE=1 COVERAGE_FILE=.coverage uv run --group integration --frozen -- python -m pytest tests/integration -s \
    --html=build/report.html \
    --self-contained-html \
    --cov-report xml \
    --junitxml=build/pyunit.xml \
    --jira

echo 'Done!'
