# For use with the just command runner, https://just.systems/
export LLVM_PROFILE_FILE := 'coverage/cargo-test-%p-%m.profraw'
default:
@just --list
grcov:
@echo 'Running tests for coverage with grcov'
rm -rf ${CARGO_TARGET_DIR}/coverage
CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' cargo test
grcov . --binary-path ${CARGO_TARGET_DIR}/debug/deps/ \
-s . -t html \
--branch \
--ignore-not-existing --ignore '../*' --ignore "/*" \
-o ${CARGO_TARGET_DIR}/coverage
@echo grcov report in file://${CARGO_TARGET_DIR}/coverage/index.html
coverage-tarpaulin:
@echo 'Running tests for coverage with tarpaulin'
mkdir /tmp/tarpaulin
cargo tarpaulin --engine llvm --line --out html --output-dir /tmp/tarpaulin
setup-coverage-tools:
rustup component add llvm-tools-preview
cargo install grcov
cargo install cargo-tarpaulin
termux:
cargo update
cargo test --no-default-features -- --show-output
clippy:
cargo clippy -- -Wclippy::unwrap_used -Wclippy::expect_used -Wclippy::indexing_slicing -Wclippy::panic