blob: 2dbd6e6c5e3df19b618060198cc27b47426c1a42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
test: test-fast test-exhaustive
test-fast: test-std test-no-std
test-exhaustive:
cargo test --ignored
cargo test --no-default-features --ignored
test-std:
cargo test
test-no-std:
cargo test --no-default-features
|