Add Makefile target for nostd tests
All checks were successful
timw4mail/rusty-numbers/pipeline/head This commit looks good

This commit is contained in:
Timothy Warren 2021-04-20 08:16:09 -04:00
parent eaec59f596
commit 2e9b115fa0

View File

@ -12,3 +12,11 @@ clean:
cargo clean cargo clean
rm cobertura.xml 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