From 48713e4e60fac3801196787509f398eb0b4b3a75 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 10 Jan 2025 18:03:06 +0000 Subject: [PATCH] build: run llvm-cov --- justfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 05bd951..6ae20e6 100644 --- a/justfile +++ b/justfile @@ -8,8 +8,10 @@ build: # cargo machete # cargo build cargo tarpaulin --engine llvm --tests --line --skip-clean --out Html Lcov - # cargo llvm-cov --html --tests - # rm *.profraw + cargo llvm-cov --html --tests + if test -f *.profraw ; then + for RAW in *.profraw ; do rm $RAW ; done + fi # cargo test # cargo doc # cargo test --example get