Add cargo-llvm-cov commands to justfile
This commit is contained in:
parent
8b782d6d20
commit
3f9d3aeae6
1 changed files with 14 additions and 0 deletions
14
.justfile
14
.justfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue