Add cargo-llvm-cov commands to justfile

This commit is contained in:
Juno Takano 2025-12-23 22:39:32 -03:00
commit 3f9d3aeae6

View file

@ -130,6 +130,20 @@ test:
alias t := test
# Run tests with coverage
[group('checks')]
cover:
cargo llvm-cov test
alias cv := cover
# Open test coverage report
[group('checks')]
cover-open:
cargo llvm-cov --open
alias cvo := cover-open
# FORMATTING
# Format all files