diff --git a/bin/cov b/bin/cov index 9321fca..fd2d339 100755 --- a/bin/cov +++ b/bin/cov @@ -2,7 +2,7 @@ manifest="${1:-.}" -RUSTFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE="test.profraw" cargo test && +RUSTFLAGS='-Cinstrument-coverage' cargo test && mkdir -p "$manifest/target/coverage/html" && ~/.cargo/bin/grcov . --binary-path "$manifest/target/debug/deps/" -s . -t html --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o "$manifest/target/coverage/html"