2024-10-31 09:58:15 +01:00
|
|
|
```
|
|
|
|
cargo install grcov
|
|
|
|
rustup component add llvm-tools-preview
|
|
|
|
```
|
|
|
|
|
2024-10-31 07:48:22 +01:00
|
|
|
```
|
|
|
|
RUSTFLAGS="-Cinstrument-coverage" cargo clean
|
|
|
|
RUSTFLAGS="-Cinstrument-coverage" cargo test
|
|
|
|
grcov . --binary-path ./target/debug/deps/ -s . -t html --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/coverage/html
|
|
|
|
```
|