Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 1fd0050

Browse files
committed
Update test script post MSRV bump
We recently updated the MSRV past 1.20 but left a few todos in the test script. Update the test script by doing: - Add `core2` to the features matrix - Add an explicit test for feature combination "std,schemars"
1 parent 0824ba1 commit 1fd0050

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

contrib/test.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/sh -ex
22

3-
# TODO: Add core2 here once we bump MSRV past 1.29
4-
FEATURES="serde serde-std std"
3+
FEATURES="serde serde-std std core2"
54

65
if [ "$DO_ALLOC_TESTS" = true ]; then
76
FEATURES="$FEATURES alloc"
@@ -43,8 +42,7 @@ if [ "$DO_FEATURE_MATRIX" = true ]; then
4342
done
4443

4544
# Other combos
46-
# TODO: Add this test once we bump MSRV past 1.29
47-
# cargo test --all --no-default-features --features="std,schemars"
45+
cargo test --all --no-default-features --features="std,schemars"
4846
fi
4947

5048
if [ "$DO_SCHEMARS_TESTS" = true ]; then

0 commit comments

Comments
 (0)