Files
sientia-dataops-opc-ingestor/run_coverage.sh

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