2020-02-19 21:10:53 -05:00
|
|
|
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
|
2021-04-20 08:16:09 -04:00
|
|
|
rm coverage.html
|
|
|
|
|
|
|
|
test:
|
|
|
|
cargo test
|
|
|
|
|
|
|
|
test-no-std:
|
|
|
|
cargo test --no-default-features --features alloc
|
|
|
|
|
|
|
|
.PHONY: test test-no-std
|