🔨 Move local coverage logic to its own script (#14166)

This commit is contained in:
Sebastián Ramírez 2025-10-08 18:03:21 +09:00 committed by GitHub
parent 32b93b53fc
commit 485bfedf5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

8
scripts/coverage.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -e
set -x
coverage combine
coverage report
coverage html

View File

@ -4,6 +4,4 @@ set -e
set -x
bash scripts/test.sh ${@}
coverage combine
coverage report
coverage html
bash scripts/coverage.sh