Add Makefile target for nostd tests
timw4mail/rusty-numbers/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-04-20 08:16:09 -04:00
parent eaec59f596
commit 2e9b115fa0
1 changed files with 9 additions and 1 deletions

View File

@ -11,4 +11,12 @@ coverage-report: generate-coverage
clean:
cargo clean
rm cobertura.xml
rm coverage.html
rm coverage.html
test:
cargo test
test-no-std:
cargo test --no-default-features --features alloc
.PHONY: test test-no-std