From baa758fc6199d2e509c3f97279fe99eb0973423a Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Tue, 25 Aug 2026 11:11:31 -0300 Subject: [PATCH] Add run_coverage.sh --- run_coverage.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 run_coverage.sh diff --git a/run_coverage.sh b/run_coverage.sh new file mode 100755 index 0000000..f9af4cb --- /dev/null +++ b/run_coverage.sh @@ -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 \ No newline at end of file