Add run_coverage.sh

This commit is contained in:
vitor-aignosi
2026-08-25 11:11:31 -03:00
parent 3b7026d7a2
commit baa758fc61

11
run_coverage.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# Exit on any error
set -e
echo "Activating virtual environment..."
source ./venv/bin/activate
pytest --cov=laborious --cov-report=html
xdg-open htmlcov/index.html