Browse Source

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

pull/14167/head
Sebastián Ramírez 1 week ago
committed by GitHub
parent
commit
485bfedf5d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 8
      scripts/coverage.sh
  2. 4
      scripts/test-cov-html.sh

8
scripts/coverage.sh

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

4
scripts/test-cov-html.sh

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

Loading…
Cancel
Save