diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -test: test-std test-no-std test-serde-no-std test-alloc-no-std +test: test-std test-no-std test-serde-no-std test-colors-no-std test-color-new-no-std test-alloc-no-std test-std: cargo test @@ -6,5 +6,9 @@ test-no-std: cargo test --no-default-features test-serde-no-std: cargo test --no-default-features --features "serde" +test-colors-no-std: + cargo test --no-default-features --features "colors" +test-color-new-no-std: + cargo test --no-default-features --features "color-new" test-alloc-no-std: cargo test --no-default-features --features "alloc" |