build: run llvm-cov
This commit is contained in:
parent
2c93e13230
commit
48713e4e60
1 changed files with 4 additions and 2 deletions
6
justfile
6
justfile
|
@ -8,8 +8,10 @@ build:
|
||||||
# cargo machete
|
# cargo machete
|
||||||
# cargo build
|
# cargo build
|
||||||
cargo tarpaulin --engine llvm --tests --line --skip-clean --out Html Lcov
|
cargo tarpaulin --engine llvm --tests --line --skip-clean --out Html Lcov
|
||||||
# cargo llvm-cov --html --tests
|
cargo llvm-cov --html --tests
|
||||||
# rm *.profraw
|
if test -f *.profraw ; then
|
||||||
|
for RAW in *.profraw ; do rm $RAW ; done
|
||||||
|
fi
|
||||||
# cargo test
|
# cargo test
|
||||||
# cargo doc
|
# cargo doc
|
||||||
# cargo test --example get
|
# cargo test --example get
|
||||||
|
|
Loading…
Add table
Reference in a new issue