blob: c045d315c72c5e9913a21f88839863c28cf1da52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
test: test-fast test-exhaustive
test-fast: test-std test-no-std test-fmt-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
test-fmt-no-std:
cargo test --no-default-features --features "fmt"
|