mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 15:08:53 +00:00
6 lines
177 B
Bash
6 lines
177 B
Bash
#!/bin/sh
|
|
# Run tarpaulin and pycobertura to generate coverage.html.
|
|
|
|
cargo tarpaulin --skip-clean --out Xml
|
|
pycobertura show --format html --output coverage.html cobertura.xml
|