25 lines
404 B
Makefile
25 lines
404 B
Makefile
coverage: coverage.html
|
|
|
|
coverage.html: coverage-report
|
|
|
|
generate-coverage:
|
|
cargo tarpaulin --out Xml
|
|
|
|
coverage-report: generate-coverage
|
|
pycobertura show --format html --output coverage.html cobertura.xml
|
|
|
|
clean:
|
|
cargo clean
|
|
rm cobertura.xml
|
|
rm coverage.html
|
|
|
|
fmt:
|
|
cargo +nightly fmt
|
|
|
|
test:
|
|
cargo test
|
|
|
|
test-no-std:
|
|
cargo test --no-default-features --features alloc
|
|
|
|
.PHONY: test test-no-std fmt |