Skip to main content

scripts: report coverage when it's less than 100%

ID
acd23bd
date
2026-09-12 19:43:54+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
f930327
message
scripts: report coverage when it's less than 100%
changed files
1 file, 1 addition, 1 deletion

Changed files

scripts/run_concurrently_tests.sh (666 → 673)

diff --git a/scripts/run_concurrently_tests.sh b/scripts/run_concurrently_tests.sh
index c3a6980..acf5367 100755
--- a/scripts/run_concurrently_tests.sh
+++ b/scripts/run_concurrently_tests.sh
@@ -17,7 +17,7 @@ report_coverage() {
     then
         echo "100% coverage!"
     else
-        python3 -m coverage
+        python3 -m coverage report
     fi
 }