Files
sientia-dataops-opc-ingestor/run_coverage.sh
2026-06-28 03:02:59 +00:00

11 lines
178 B
Bash
Executable File

#!/bin/bash
# Exit on any error
set -e
echo "Activating virtual environment..."
source ./venv/bin/activate
pytest --cov=ingestor --cov-report=html
xdg-open htmlcov/index.html