Skip to content
Snippets Groups Projects
report-coverage.sh 405 B
Newer Older
#! /usr/bin/env nix-shell
#! nix-shell -i bash -p "curl" -p "python.withPackages (ps: [ ps.coverage ])"
Tom Prince's avatar
Tom Prince committed
find ./result/share/doc
cp ./result/share/doc/*/.coverage.* ./
python -m coverage combine
python -m coverage report
python -m coverage xml

# Unfortunately, this is the recommended uploader.
# https://docs.codecov.io/docs/about-the-codecov-bash-uploader
bash <(curl -s https://codecov.io/bash)