aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2024-06-23 01:59:12 -0700
committeriximeow <me@iximeow.net>2024-06-23 01:59:12 -0700
commitb6070a6fa4cde012028f6d74c94436c86d79df43 (patch)
tree127f9813f92850c758a8d8cc9f0d3158adfce5ea /Makefile
parent0357471015bbbe54023a6b729d4d13361d8835b8 (diff)
deprecate ShowContextual, document changes to colors/color_new modules
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index aa38b87..efe5c3f 100644
--- a/Makefile
+++ b/Makefile
@@ -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"